I tried to solve this formula. I was asked to use a recursive solution.
I need to find a recursive formula to the number of possibilities to choose the color of k balls from n colors (every ball must have a color):
This, in order to prove the next phrase:
$$ \binom{n+k}{n} = \sum_{i=0}^{k}\binom{n+i-1}{n-1} $$
Thank you for your time!