login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A245966
Triangle read by rows: T(n,k) is the number of tilings of a 2 X n board with 1 X 1 and L-shaped tiles (where the L-shaped tiles cover 3 squares) that have k L-shaped tiles.
1
1, 1, 1, 4, 1, 8, 2, 1, 12, 20, 1, 16, 54, 16, 1, 20, 104, 112, 4, 1, 24, 170, 352, 108, 1, 28, 252, 800, 664, 48, 1, 32, 350, 1520, 2280, 704, 8, 1, 36, 464, 2576, 5820, 4064, 416, 1, 40, 594, 4032, 12404, 14784, 4560, 128, 1, 44, 740, 5952, 23408, 41104, 25376, 3200, 16
OFFSET
0,4
COMMENTS
Row n contains 1+floor(2n/3) entries.
Sum of entries in row n = A127864(n).
Sum_{k>=0} k*T(n,k) = A127866(n).
LINKS
P. Chinn, R. Grimaldi and S. Heubach, Tiling with L's and Squares, Journal of Integer Sequences, Vol. 10 (2007), Article 07.2.8
FORMULA
G.f.: 1/(1 - z - 4*t*z^2 - 2*t^2*z^3).
The trivariate g.f. with z marking length, t marking 1 X 1 tiles, and s marking L-shaped tiles is 1/(1 - t^2*z - 4*t*s*z^2 - 2*s^2*z^3).
EXAMPLE
T(2,1) = 4 because we can place the L-shaped tile in the 2*2 board in 4 positions.
Triangle starts:
1;
1;
1, 4;
1, 8, 2;
1, 12, 20;
1, 16, 54, 16;
MAPLE
G := 1/(1-z-4*t*z^2-2*t^2*z^3): Gser := simplify(series(G, z = 0, 15)): for j from 0 to 13 do P[j] := sort(coeff(Gser, z, j)) end do: for j from 0 to 13 do seq(coeff(P[j], t, i), i = 0 .. floor(2*j*(1/3))) end do; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Emeric Deutsch, Aug 15 2014
STATUS
approved