OFFSET
0,3
COMMENTS
If only symmetries of the rectangle are considered then a(3) is still 3. - Andrew Howroyd, Nov 16 2025
LINKS
John Mason, Table of n, a(n) for n = 0..1000
John Mason, Counting free tilings of a rectangle
Index entries for linear recurrences with constant coefficients, signature (1,3,0,0,-3,-3,-3,-2,-1).
FORMULA
For n <= 1, a(n)=1;
otherwise for odd n > 1, a(n)=(A002478(n) + A000930(n) + 2 * A002478((n - 1) / 2) + 2 * A002478((n - 3) / 2)) / 4;
Alternatively, from Walter Trump:
For n <= 1, a(n)=1;
otherwise for odd n > 1, a(n)=(A000930(2n) + A000930(n) + 2 * A000930(n - 1) + 2 * A000930(n - 3)) / 4;
G.f.: (1 - 2*x^2 - 2*x^3 - 3*x^4 - 2*x^5 - x^6)/((1 - x - x^3)*(1 + x + x^3)*(1 - x - 2*x^2 - x^3)). - Andrew Howroyd, Nov 16 2025
EXAMPLE
a(4) is 6 because of:
+-+-+-+ +-+-+-+ +-+-+-+ +-+-+-+ +-+-+-+ +-+-+-+
| | | | | | | | | | | | | | | | | | |
+-+-+-+ + + + +-+ + +-+ + +-+ +-+-+-+
| | | | | | | | | | | | | | | | | |
+-+-+-+ + + +-+-+-+ +-+-+-+ +-+-+-+ + +-+
| | | | | | | | | | | | | | | | | | |
+-+-+-+ +-+-+-+ + +-+ +-+ + +-+-+-+ +-+-+-+
| | | | | | | | | | | | | | | | | | | | | |
+-+-+-+ +-+-+-+ +-+-+-+ +-+-+-+ +-+-+-+ +-+-+-+
PROG
(PARI) Vec((1-2*x^2-2*x^3-3*x^4-2*x^5-x^6)/((1-x-x^3)*(1+x+x^3)*(1-x-2*x^2-x^3))+O(x^99)) \\ Charles R Greathouse IV, May 13 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
John Mason, Dec 12 2022
STATUS
approved
