Let $t_n$ be the number of lists of length $n$ with entries $a,b,c$ in which no two $a$'s occur consecutively and no two $b$'s occur consecutively. (There are no restrictions on $c$.) Find and prove a recurrence relation that $t_n$ satisfies.
The recurrence relation I've found is $t_{n+2}=2t_{n+1}+t_{n}$, for $n\geq2$ using examples but I'm not sure that I'm right!
Hint: let $u_n$, $v_n$ and $w_n$ be the number of such sequences that end in $a, b, c$ respectively. Find a system of recurrences for these.