Let $x_n$ be the number of words length n where the alphabet is made up of 1, 2, 3, 4 and there are always an odd number of 2's(for example, $x_1$ = 1 because there is only one word of length 1 with an odd number of 2's). Find a recurrence relation for $x_n$ = something.
How would I get it to be something like $x_n = x_{n-1} + x_{n-2}$. I solved for the first 3: $x_0 = 0$, $x_1 = 1$, and $x_2 = 6$, but I have no idea where to go from here.