OFFSET
0,3
COMMENTS
1 followed by period 60: (1, 8, ..., 22) repeated; offset 0.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..1000
FORMULA
G.f.: see Maple program.
EXAMPLE
a(3) = 4, because there are 4 tilings of a 3 X 5 rectangle using integer-sided rectangular tiles of area 3:
._._._._._. ._____._._. ._._____._. ._._._____.
| | | | | | |_____| | | | |_____| | | | |_____|
| | | | | | |_____| | | | |_____| | | | |_____|
|_|_|_|_|_| |_____|_|_| |_|_____|_| |_|_|_____|
MAPLE
gf:= -(21*x^12 +22*x^11 +51*x^10 +56*x^9 +80*x^8 +65*x^7 +72*x^6 +45*x^5 +40*x^4 +16*x^3 +11*x^2 +2*x +1) / (x^12 +x^11 +2*x^10 +2*x^9 +2*x^8 +x^7 -x^5 -2*x^4 -2*x^3 -2*x^2 -x -1):
a:= n-> coeff(series(gf, x, n+1), x, n):
seq(a(n), n=0..100);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Alois P. Heinz, Dec 06 2012
STATUS
approved