Consider a floor of size $2\times3n$ to be tiled with trominoes of which there are two kinds: three blocks connected vertically, and 3 blocks connected in an 'L' shape.
If $x_n$:= the number of possible tilings of a floor of size $2\times3n$, show that $x_n$ satisfies the recurrence relation: $$x_n =3x_{n−1} +2x_{n−2} +2x_{n−3} +\cdots+2x_1. $$
I can show that the relation is true for $x_1$ and $x_2$, I tried to use induction to show for $x_k$ and $x_{k+1}$ but to no avail. How should I go about this?
The claimed recursion immediately implies the simpler recursion $$x_n=4x_{n-1}-x_{n-2}\quad(n\geq2)\ ,\tag{1}$$ and is easy to check the initial values $x_0=1$, $\>x_1=3$.
In order to prove $(1)$ we also consider the tilings of $2\times3n$ having an overlap. These are tilings where $3$ additional squares to the right of the vertical right border are tiled as well. These $3$ squares are forming an L, and are tiled by two different $1\times3$-sticks. Other overlaps can not occur because of the modularity. Let $y_n$ be the number of these fillings with overlap. Checking what can happen between $2\times3(n-1)$ and $2\times3n$ it is now easy to verify that $$x_n=3x_{n-1}+y_{n-1},\qquad y_n=2x_{n-1}+y_{n-1}\ .\tag{2}$$ Replace here $n$ by $n-1$ and subtract the resulting equations. This gives $$x_{n-1}-y_{n-1}=x_{n-2}\ ,\tag{3}$$ and eliminating $y_{n-1}$ from $(2)\wedge(3)$ leads to $(1)$.