I have a set of N numbers. How many possible M-combinations - with M > N - of the N numbers are there which contain every number at least once?
Example:
Numbers {1,2} and hence N = 2 and M be 3.
Possible 3-combinations:
1,1,1 (no)
1,1,2 (yes)
1,2,1 (yes)
1,2,2 (yes)
2,1,1 (yes)
2,1,2 (yes)
2,2,1 (yes)
2,2,2 (no)
Answer would be 6.