A wall with dimensions $2\times7$ squares has to be covered with ceramic tiles. There are two tiles of ceramic tiles that are available: the $1\times1$ (identical) tile and the $2\times1$ (identical) tile. The $2\times1$ tile can be rotated before being placed on the board. We are provided with as many tiles of each type as we need. In how many ways can we cover the $2\times7$ wall with such tiles?
My idea: consider the cases: have no $2\times1$ tile, have one $2\times1$ tile, have two $2\times1$ tiles, have three $2\times1$ tiles, and so on up to seven $2\times1$ tiles, but that is too complicated and I don't know how to do. Please everyone help me.
I will make frequent use of the words "domino" and "monomino" in this problem.
Let $a_k$ represent the number of ways to tile a $2\times k$ wall. We will seek to find a recurrence relation for $a_{k+1}$ by considering the rightmost between-column where there is a vertical line that doesn't cut through a domino.
Here will be the different summands of $a_{k+1}$:
So we have $$a_{k+1}=2a_k+3a_{k-1}+2a_{k-2}+...+a_1,\ a_0=1$$
This is A030186 in OEIS. Also note that, since $$a_k=2a_{k-1}+3a_{k-2}+2a_{k-3}+...+a_1$$ we can rearrange and add the two equations together to get
$$a_{k+1} = 3a_k + a_{k-1} - a_{k-2}$$ Either way, $a=(1,2,7,22,71,228,733,2356,\cdots)$, so $a_7=2356$.