Let $n$ be a non-negative integer and $k$ be a positive integer.
Let $a, b, c, \ldots$ be $k$ non-negative integers such that $a+b+c+\ldots \leq n$.
How many tuples of {$a, b, c, \ldots$} satisfy the inequality?
Note that the tuples {$a=1, b=3$} and {$a=3, b=1$} are two different tuples.
For $k = 1$, the answer is $n+1$.
For $k = 2$, the answer is: $binomial(n+2,2) = \dfrac{(n+1)(n+2)}{2} = 1 + 2 + \ldots + n + n+1$
For any $k$, I conjecture that the answer is: $binomial(n+2,k) = \dfrac{(n+2)!}{k!(n+2-k)!}$
We wish to have $k$ numbers adding to at most $n$. This is equivalent to $k+1$ numbers adding to exactly $n$, since the difference between the sum of numbers and $n$ can be considered its own number.
Consider $k$ separators among $n$ objects. The number of objects before the first separator is the first number, the number between separators 1 and 2 are the second number, etc.
So we need to place $k$ separators in $n+k$ positions, and so there are ${n+k} \choose k$ ways to do so.