OFFSET
0,5
FORMULA
E.g.f.: A(x)^y where A(x) is the e.g.f. for A001035.
EXAMPLE
Triangle T(n,k) begins:
1;
0, 1;
0, 2, 1;
0, 12, 6, 1;
0, 146, 60, 12, 1;
0, 3060, 970, 180, 20, 1;
...
MATHEMATICA
nn = 8; A[x_] := Total[Cases[Import["https://oeis.org/A001035/b001035.txt",
"Table"], {_, _}][[All, 2]]* Table[x^(i - 1)/(i - 1)!, {i, 1, 19}]];
Table[Take[(Range[0, nn]! CoefficientList[Series[A[x]^y, {x, 0, nn}], {x, y}])[[i]], i], {i, 1, nn}] // Grid
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Jul 05 2022
STATUS
approved