There are bags with n balls, and each ball can have any of the n different colors with equal probability. A bag can contain each color multiple times. What is the expected number of bags until we get at least one ball of each color?
The closest problem I could find is the coupon collector's problem, but in that problem you buy the boxes one by one, whereas in this problem you can only select a multiple of n balls.
What I got so far is the expected number if we are only interested in getting one specific color $i$, which would then have a geometric distribution with $p=1-(\dfrac{n-1}{n})^n$, since getting color $i$ in a bag would be the complement of getting n balls with a color other than $i$, but I feel like this not the right direction.