OFFSET
1,4
COMMENTS
A deco polyomino is a directed column-convex polyomino in which the height, measured along the diagonal, is attained only in the last column.
LINKS
E. Barcucci, A. Del Lungo and R. Pinzani, "Deco" polyominoes, permutations and random generation, Theoretical Computer Science, 159, 1996, 29-42.
FORMULA
EXAMPLE
T(2,0)=1 and T(2,1)=1 because the deco polyominoes of height 2 are the horizontal and vertical dominoes, having, respectively, 0 and 1 columns with exactly 2 cells starting at level 0.
Triangle starts:
1;
1, 1;
2, 3, 1;
8, 10, 5, 1;
42, 44, 25, 8, 1;
MAPLE
P[1]:=1: P[2]:=1+t: for n from 3 to 11 do P[n]:=sort(expand((t+n-2)*((n-2)!+P[n-1]))) od: for n from 1 to 11 do seq(coeff(P[n], t, j), j=0..n-1) od; # yields sequence in triangular form
MATHEMATICA
P[n_ /; n >= 3, t_] := P[n, t] = (t + n - 2) ((n - 2)! + P[n - 1, t]);
P[1, _] = 1; P[2, t_] = 1 + t;
Table[CoefficientList[P[n, t], t], {n, 1, 10}] // Flatten (* Jean-François Alcover, Nov 15 2019 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Aug 13 2006
STATUS
approved