Here's the question:
You have a standard six-sided die and you roll it repeatedly, writing down the numbers that come up, and you win when two of your rolled numbers add up to $7$. (You will almost surely win.) Necessarily, one of the winning summands is the number rolled on the winning turn. A typical game could go like this: $1, 1, 4, 5, 3$; you win on the 5th turn because $3 + 4 = 7$. How many turns do you expect to play?
Here's what I've tried: We seek $E(N)$ where $N$ is a random variable counting the number of turns it takes to win. Then $N \ge 2$, and $$E(N) = \sum_{n=2}^\infty n P(N=n) = \sum_{n=1}^\infty P(N > n).$$ I want to find either $P(N=n)$, the probability that I win on the $n$th turn, or $P(N > n)$, the probability that after $n$ turns I still haven't won. Note that $P(N = 1) = 0$. Let $X_k$ be the number rolled on the $k$th turn. Then $$P(N = 2) = P(X_1 + X_2 = 7) = \sum_{x=1}^6 P(X_1 = x)P(X_2 = 7-x) = 6\cdot \frac{1}{6}\cdot\frac{1}{6} = \frac{1}{6}.$$ So far so good. To compute $P(N > 3)$ I let $A_{i, j} = \{\omega \in \{1, \dotsc, 6\}^3 : w_i + w_j = 7\}$ and used the inclusion-exclusion principle and symmetry to find $$|A_{1,2} \cup A_{2,3} \cup A_{1,3}| = 3|A_{1,2}| - 3|A_{1,2}\cap A_{1,3}| = 90$$ so $P(N > 3) = \frac{126}{216} = \frac{7}{12}$. This is the probability that no two of three dice sum to seven. Similarly, I found $P(N > 4)$ to be $\frac{77}{216}$.
I don't see how to generalize the above. I also thought that $$P(N > n) = P(X_i + X_j \ne 7 \text{ for all }1 \le i\ne j \le n) = (1 - P(X_i + X_j = 7))^{\binom{n}{2}} = \left(\frac{5}{6}\right)^{n(n-1)/2}$$ but that's false because the events are not independent.
I also tried $$P(N = n) = P(X_n = 7 - X_k \text{ for some } 1 \le k < n \text{ and }N \ne n - 1)$$ where that last clause is shorthand for "and the previous rolls did not secure your victory". This yields the recursion $p_n = (1-(5/6)^{n-1})(1-p_{n-1})$, $p_1 = 0$, which didn't agree with my previously computed probabilities. (Perhaps I made an error.)
To be clear: What follows assumes that the pair that adds to $7$ need not be consecutive. Thus, for example, I am assuming that the sequence $\{1,3,6\}$ ends the game in three rolls.
Let $E=E_0$ be the answer. If you have rolled a collection $S$ which contains no pair which adds to $7$ then let $E_S$ denote the expected number of rolls it will take from there. As every roll is equally probable, all that really matters is the size of $S$, so let $E_S=E_n$ if $S$ has $n$ elements. Of course the only possible $n$ are $\{0,1,2,3\}$.
We start with $E_3$. We note that rolling again has a $\frac 12$ chance of completing the $7$ and a $\frac 12$ chance of getting a useless duplicate, thus $$E_3=\frac 12\times 1+\frac 12 \times (E_3+1)\implies E_3=2$$
Now for $E_2$. As before we consider the next toss and write $$E_2=\frac 13\times 1+\frac 13 \times (E_2+1)+\frac 13 \times (E_3+1)\implies E_2=\frac 52$$
And $E_1$. As before $$E_1=\frac 16\times 1+\frac 16 \times (E_1+1)+\frac 46\times (E_2+1)\implies E_1=\frac {16}5$$
And then of course $$E=E_1+1=\frac {21}5$$