I have a set of numbers $i=1,...,100$.
How many combinations exist using numbers from this set that sum to 100 of length 8?
So for example these would be valid solutions:
$(1, 2, 3, 4, 5, 6, 7, 72)$, $(10,11,22,1,5,8,9,34)$
also, the order is important, that means $(1, 2, 3, 4, 5, 6, 7, 72) \neq (2,1, 3, 4, 5, 6, 7, 72)$
also zeros can be added in any amount, e.g. $(100,0,0,0,0,0,0,0)$.
numbers can also be used more than one time, e.g.
$(10,10,10,10,10,10,10,30)$