I am having a hard time trying to prove the following recurrence relation $$f(n)=f(n-1)+2f(n-2),\quad n\geq 2, \quad f(1)=1 \quad \& \quad f(2)=3.$$
$f(n)$ is the number of ways to tile a $(2\times n)$-rectangle with tiles of the form $2 \times 1$, $1 \times 2$, or $2\times 2$.
I attempt this by induction but I am confused in the base case since I get $f(2)=f(1)+2f(0)$ but we do not know $f(0)$.
Can someone help?