OFFSET
0,3
COMMENTS
a(n) is the number of ways to tile this 2 X n strip (with one extra square added at the top left) with dominoes and L-shaped trominoes (also called polyominoes):
._
|_|_ _ _ _
|_|_|_|_|_| . . .
|_|_|_|_|_| . . .
LINKS
FORMULA
EXAMPLE
a(2) = 2 thanks to the following two tilings (where the L-shaped trominoes are tiled with X's and the dominoes are left blank):
._ _
|X|_ | |_
|X|X| and |_|X|
|_ _| |X X|
MATHEMATICA
Join[{1}, LinearRecurrence[{2, 0, 1}, {0, 2, 3}, 40]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Greg Dresden, May 28 2020
STATUS
approved