OFFSET
1,5
COMMENTS
The sequence counts the fixed n-ominoes with prescribed bounding box width w and variable height w <= h <= n.
LINKS
FORMULA
T(n,1) = T(n,n) = 1 (the straight n-ominoes).
T(n,n-1) = 4*n-8 for n >= 3 (width n-1 and height 2).
Conjecture: T(n,n-2) = 8*n^2 - 51*n + 86 for n >= 5.
EXAMPLE
T(3,2) = 4 counts the 4 variants of the L-shaped tromino rotated by multiples of 90 degrees. T(4,2) = 9 counts one O-tetromino in a 2 X 2 box, 4 L-tetrominoes in a 3 X 2 box, 2 T-tetromoes in a 3 X 2 box, and 2 Z-tetrominoes in a 3 X 2 box.
The triangle starts
1;
1, 1;
1, 4, 1;
1, 9, 8, 1;
1, 18, 31, 12, 1;
1, 35, 95, 68, 16, 1;
1, 66, 269, 282, 121, 20, 1;
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
R. J. Mathar, May 22 2019
STATUS
approved