For each integer $n ≥ 1$, let $t_n$ be the number of strings of $n$ letters that can be produced by concatenating (running together) copies of the strings $“a”$, $“bc”$ and $“cb”$.
For example, $t_1$ = $1$ (“a” is the only possible string) and $t_2$ = 3 ($“aa”$, $“bc”$ and $“cb”$ are the possible strings).
(a) Find $t_3$ and $t_4$.
(b) Find a recurrence for $t_n$ that holds for all $n ≥ 3$ Explain why your recurrence gives $t_n$
(You do not have to solve the recurrence.)
Answer I've got so far (by no means do i think this is even close to right)
a) $t_3$ = $"aaa"$, $"bca"$, $"acb"$ ??
$t_n$ = t_(n-1) + 2 x t_(n-2)
(had trouble with the latex)
– dave May 03 '15 at 13:30