OFFSET
0,4
LINKS
Alois P. Heinz, Rows n = 0..18, flattened
FORMULA
E.g.f.: A(x + exp(y*x) - 1) where A(x) is the e.g.f. for A001035.
EXAMPLE
T(2,1) = 6 because we have: {(1,1)}, {(2,2)}, {(1,1),(1,2)}, {(1,1),(2,1)}, {(2,2),(1,2)}, {(2,2),(2,1)}.
Triangle T(n,k) begins:
1;
1, 1;
3, 6, 4;
19, 57, 66, 29;
219, 876, 1428, 1116, 355;
4231, 21155, 44500, 49070, 28405, 6942;
130023, 780138, 2013810, 2858700, 2354415, 1068576, 209527;
...
MATHEMATICA
lg = Length[A001035];
A[x_] = Sum[A001035[[n+1]] x^n/n!, {n, 0, lg-1}];
CoefficientList[#, y]& /@ (CoefficientList[A[x + Exp[y*x]-1] + O[x]^lg, x]* Range[0, lg-1]!) // Flatten (* Jean-François Alcover, Jan 01 2020 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Jul 31 2014
STATUS
approved