A374512 Number of ways to tile a 3 X n board with 2 X 2 and 3 X 3 staircase tiles.
1, 0, 2, 4, 6, 16, 32, 64, 140, 288, 600, 1264, 2632, 5504, 11520, 24064, 50320, 105216, 219936, 459840, 961376, 2009856, 4201984, 8784896, 18366144, 38397440, 80275840, 167829248, 350873728, 733556736, 1533616128, 3206266880, 6703206656, 14014111744
Offset: 0
Examples
Here is one of the a(6)=32 ways to tile the 3 X 6 board: ___________ | |_ | _| | |_| _| | |_____|_|___|.
Links
- Index entries for linear recurrences with constant coefficients, signature (0,2,4,2).
Programs
-
Mathematica
LinearRecurrence[{0, 2, 4, 2}, {1, 0, 2, 4}, 50]
Comments