Consider a 12-sided fair die. What is the distribution of the number T of rolls required to roll a 1, a 2, a 3, and a 4?
Taking inspiration from the Coupon Collector's Problem, I believe that the expected number of rolls to achieve the goal would be
$$E[T] = \sum\limits_{i=0}^3 \frac{12}{4-i} = 25$$
Similarly, the variance would be
$$Var[T] = \sum\limits_{i=0}^3 \frac{1-\frac{4-i}{12}}{(\frac{4-i}{12})^2} = 180$$
But applying Chebyshev here does not yield very useful bounds. My question is therefore, how would you compute, for example, $P(T=16)$ or $P(T<30)$?
Ideally this could be generalized to a set of k required numbers, not just 4 as in the example.