I have $8$ boxes and $60$ items: how many ways can I fill the boxes so that
- The order of the items in each box does not matter
- It does not matter which boxes are filled with which items. In other words $60\;0\;0\;0\;0\;0\;0\;0$ is the same as $0\;60\;0\;0\;0\;0\;0\;0$. In other words if we have a combination and we swap the items in $2$ of the boxes it will still count as one variation.
I assume that the $n = 60$ items are distinct, while the $k = 8$ boxes are indistinguishable. The number of ways taking into account the order of the boxes that use $m$ specific boxes (the rest being empty) is $\binom{m}{0} m^n - \binom{m}{1} (m-1)^n + \binom{m}{2} (m-2)^n - \cdots \binom{m}{m} 0^n$ by inclusion-exclusion principle, and permuting those $m$ boxes shows that exactly $m!$ of those ways correspond to each way that uses the same $m$ boxes but where the order of the boxes is irrelevant. Thus the number of ways for the original problem that use exactly $m$ boxes is $\dbinom{n}{m} \dfrac{\sum_{i=0}^m \binom{m}{i} (m-i)^n (-1)^i}{m!}$. Then the answer can be obtained by summing that for all $m$ from $1$ to $k$.