I have been struggling with this brain teaser for some time now. I looked at some combinatorics and partition equations but I can't find the one that captures the solution entirely.
Frame
I have a set with 6 elements (bins) { a , b , c , d , e , f }.
Each element in the set can take an integer value in the range (0,5).
The value N is given by N = a + b + c + d + e + f: The total range for N is (0,30).
Question
For each value of N in the range (0,30) how many unique combinations of elements can I have in the set without repetition.
e.g. if N = 30 there is only 1 possible unique combination {5,5,5,5,5,5}
also for N = 0 there is only 1 possible unique combination {0,0,0,0,0,0}
for N = 1 there are 6 possible unique combinations {1,0,0,0,0,0}
{0,1,0,0,0,0}
{0,0,1,0,0,0}
{0,0,0,1,0,0}
{0,0,0,0,1,0}
{0,0,0,0,0,1}
Therefore N can be described as a discrete normally distributed integer random variable in the range (0,30).
Please help.