OFFSET
0,4
COMMENTS
a(n) is the number of ways to tile a zig-zag strip of n cells using squares (of length 1), strips (of length 3), and triangles (using 3 cells), where the zig-zag strip begins below the center line. Here is the zig-zag strip corresponding to n=12, with 12 cells:
___ ___ ___
| | | | | |
_|_ _|_ _|_ _|_ _|_ _|_
| | | | | | |
_|___|___|___|___|_ _|___|
| | | | | |
|___| |___| |___|,
and here are the three possible triangles and strips (which can also be rotated or reflected):
___
| |
_| _| ___
| | | |
_| __| ___ ___ ___ _| |_
| | | | | |
|___|, |___ ___ ___|, |___ ___|.
As an example, here is one of the a(12) = 86 ways to tile the skew double-strip of 12 cells:
___ ___ ___
| | | | | |
_| _|___|_ _|___|___|_
| | | |
_| __|_ _|___________|
| | | | | |
|___| |___| |___|.
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,1,0,2,0,2,0,1).
FORMULA
MATHEMATICA
LinearRecurrence[{0, 1, 0, 2, 0, 2, 0, 1}, {1, 1, 1, 2, 3, 4, 7, 10}, 50]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Greg Dresden and Yunxin Li, Jun 29 2023
STATUS
approved