For some, this might not be the most intuitive way, but it is a way to solve this problem.
If $a=b+c$, then if a is an even number it gives us 2 exceptions, and if a is odd it gives 1 exception. Will keep exceptions in a seperate bucket.
The maximum sum that can be reached is 9. So if $(b,c,a)$ represent the set of possible number then, $(1,8,9),(2,7,9),(3,6,9),(4,5,9)$ and then $b,c$ change place. That's $4\times 2 =8$ numbers. And since places are not fixed, therefore its $8\times3=24$ numbers + 1 exception $(909)$
Now, For 8 $(1,7,8),(2,6,8),(3,5,8)$ that's $3\times2\times3=18$ numbers +2 exceptions $(448,808)$
For 7 $(1,6,7),(2,5,7),(3,4,7)$ that's $3\times2\times3=18$ numbers +1 exception $(707)$
For 6 $(1,5,6),(2,4,6)$ that's $2\times2\times3=12$ numbers +2 exception $(606,336)$
For 5 $(1,4,5),(2,3,5)$ that's $2\times2\times3=12$ numbers +1 exception $(505)$
For 4 $(1,3,4)$ that's $2\times1\times3=6$ numbers +2 exception $(404,224)$
For 3 $(1,2,3)$ that's $2\times1\times3=6$ numbers +1 exception $(303)$
So far, 96 numbers. Now, lets look at the combinations of number put in exception and will count and add seperately. $(909,990,448,844,484,808,880,707,770,606,660,336,363,633,112,121,211,202,220,101,110)$
Total count of number :$117$