Suppose that you are flipping a coin endless times. what's the expected round where you would get the same side $3$ consecutive times? I'm guessing it would take $7$ flips to see either HHH or TTT sequence. Because the expected flip to see a HH or TT is $6$ flips and plus the initial flip it would $7$.
Am I correct?
Another approach. Let $t_k$ be the expected number of tosses needed to see $k$ identical flips in a row. Clearly $t_1 = 1$; the first toss is always identical to itself.
We can create a recursion as follows. In order to get $k+1$ identical tosses in a row, we must first get $k$ identical tosses, which takes time $t_k$. On the next toss, with probability $\frac{1}{2}$, we achieve our goal of $k+1$ identical tosses; but also with probability $\frac{1}{2}$, we are back to the square one (we can use the toss that set us back as the first toss of the new attempt). Thus
$$ t_{k+1} = t_k + \frac{1}{2} \times 1 + \frac{1}{2} \times t_{k+1} $$
which can be simplified to obtain
$$ t_{k+1} = 2t_k+1 $$
This recurrence is easily solved with the boundary condition $t_1 = 1$ to yield
$$ t_k = 2^k-1 $$
and in particular, $t_3 = 2^3-1 = 7$.