Suppose you have a large collections of red 1x2 tiles, blue 1x2 tiles and green 1x2 tiles. For $n\ge 0$, let $t_n$ be the number of ways to use these to exactly cover the squares of a 2xn checkerboard (without overlapping the tiles). The tiles can be places on the board either vertically or horizaontally. Determine $t_0 t_1 t_2 t_3$ and a recurrence relation, and initial condition for $t_n$
This is what I have:
$t_0 = 0$
$t_1 = 3$
$t_2 = (3)(3)+(3)(3) = 18$ $t_3 = (3)(3)(3)+(3)(3)(3)+(3)(3)(3) = 81$
I am not sure if this is right, and how to get a recurrence relation