OFFSET
0,8
COMMENTS
REFERENCES
L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 225.
LINKS
Alois P. Heinz, Rows n = 0..200, flattened
FORMULA
E.g.f.: G(t,z)=exp[t*sinh(z)+cosh(z)-1].
EXAMPLE
T(3,1)=4 because we have 123, 1|23, 12|3 and 13|2.
Triangle starts:
1;
0,1;
1,0,1;
0,4,0,1;
4,0,10,0,1;
0,31,0,20,0,1;
MAPLE
G:=exp(t*sinh(z)+cosh(z)-1): Gser:=simplify(series(G, z=0, 15)): for n from 0 to 12 do P[n]:=sort(n!*coeff(Gser, z, n)) od: for n from 0 to 12 do seq(coeff(P[n], t, j), j=0..n) od; # yields sequence in triangular form
# second Maple program:
with(combinat):
b:= proc(n, i) option remember; expand(`if`(n=0, 1,
`if`(i<1, 0, add(multinomial(n, n-i*j, i$j)/j!*
b(n-i*j, i-1)*`if`(irem(i, 2)=1, x^j, 1), j=0..n/i))))
end:
T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(b(n$2)):
seq(T(n), n=0..15); # Alois P. Heinz, Mar 08 2015
MATHEMATICA
nn = 10; Range[0, nn]! CoefficientList[
Series[Exp[ (Cosh[x] - 1) + y Sinh[x]], {x, 0, nn}], {x, y}] // Grid (* Geoffrey Critzer, Aug 28 2012 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Oct 28 2006
STATUS
approved