The question in the title is a homework question that I have been stumped on for some time. My approach thus far was to treat it as an occupancy problem. From class we derived the following formula for the probability of k faces being rolled on an r sided die after n rolls:
$$ P(Y = k) = \binom{r}{k} \big (\frac{k}{r}\big )^n \sum_{i=0}^{r}(-1)^i\binom{k}{i}\big(1-\frac{i}{k}\big)^n$$
So what I have done is set k = r = 6 and arrived at:
$$ P(Y = 6) = \sum_{i=0}^{6}(-1)^i\binom{6}{i}\big(1-\frac{i}{6}\big)^n$$
However, the problem now is that n is a random integer variable between $3$ and infinity. What I did next was attempt to model the number of rolls as a negative-binomial random variable and then compute the expectation value of the above expression inside of this distribution; however, it produces a very ugly expression which I am pretty sure is still wrong because it does not include the fact that a 6 is guaranteed to be rolled.
I basically have run out of ideas and am somewhat stuck on how to proceed. My approach may be a total red herring, so feel free to discard it in any advice you give. Also, this is homework, so please don't list a full solution. Thanks for any help!
First let's find the probability that the third time a $6$ appears occurs on the $n$th roll. This is simply the probability that the $n$th roll is a $6$ and exactly two rolls before it are also $6$'s, which is $\frac{{n-1 \choose 2}*5^{n-3}}{6^n}$.
Then, the probability that all five other values have occurred during the $n-3$ chances can be computed by the principle of inclusion and exclusion as $1-\frac{5*4^{n-3}}{5^{n-3}}+\frac{10*3^{n-3}}{5^{n-3}}-\frac{10*2^{n-3}}{5^{n-3}}+\frac{5}{5^{n-3}}$ when $n>3$, and $0$ when $n=3$. Multiplying these two values and summing over all $n$, you get a polynomial multiplied by exponential functions, which can each be evaluated exactly by using generating functions (or simply algebraic manipulation).