I know the answer but I have no idea how to explain it
Question A $t_3 =$ ['aaa', 'abb', 'acc', 'bba', 'cca'] ($5$ elements)
$t_4 =$ ['aaaa', 'aabb', 'aacc', 'abba', 'acca', 'bbaa', 'bbbb', 'bbcc', 'ccaa', 'ccbb', 'cccc'] ($11$ elements)
$t_5 =$ ['aaaaa', 'aaabb', 'aaacc', 'aabba', 'aacca', 'abbaa', 'abbbb', 'abbcc', 'accaa', 'accbb', 'acccc', 'bbaaa', 'bbabb', 'bbacc', 'bbbba', 'bbcca', 'ccaaa', 'ccabb', 'ccacc', 'ccbba', 'cccca'] ($21$ elements)
$t_6 = 43$ elements
From handwriting a tonne of permutations, I know that the recurrence is: $t_n = t_{n-1} + 2t_{n-2}$
What is the correct way to explain why my recurrence gives $t_n$?

To make a string of length $n$ you can start with a string of length $n-1$ and add an $a$, or you can start with a string of length $n-2$ and add $bb$ or $cc$. Every string of length $n$ is accounted for this way and no string is counted twice.