OFFSET
1,4
COMMENTS
Compare to A165716 which counts the same type of tiling on a 3 X n rectangle, but including the four corners.
LINKS
Index entries for linear recurrences with constant coefficients, signature (2,6,-4,11,2).
FORMULA
a(n) = 2*a(n-1) + 6*a(n-2) - 4*a(n-3) + 11*a(n-4) + 2*a(n-5) for n >= 7.
G.f.: x^2*(1 - 2*x - 3*x^2 + 2*x^3 - 10*x^4)/(1 - 2*x - 6*x^2 + 4*x^3 - 11*x^4 - 2*x^5). - Stefano Spezia, Jul 11 2026
EXAMPLE
a(4) = 3, because there are 3 tilings of a 3 X 4 rectangle (missing the four corners) using dominoes and right trominoes:
___ ___ ___
_| | |_ _|___|_ _|___|_
|___|___| |_ | _| |___|___|
|___| |_|_| |___|
MATHEMATICA
CoefficientList[Series[x^2*(1 - 2*x - 3*x^2 + 2*x^3 - 10*x^4)/(1 - 2*x - 6*x^2 + 4*x^3 - 11*x^4 - 2*x^5), {x, 0, 29}], x] (* Stefano Spezia, Jul 11 2026 *)
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Greg Dresden and Jinpeng (Parker) Ou, Jul 10 2026
STATUS
approved
