OFFSET
0,3
COMMENTS
The structure of the n!*P(n) formulas leads to the multinomial coefficients A036039.
FORMULA
MAPLE
a := proc(n): n!*P(n) end: P := proc(n): if n=0 then 1 else P(n):= expand((1/n)*(add(x(n-k) * P(k), k=0..n-1))) fi; end: with(combinat): x := proc(n): bell(n) end: seq(a(n), n=0..18);
MATHEMATICA
nmax = 20; CoefficientList[Series[E^(Sum[BellB[n]*z^n/n, {n, 1, nmax}]), {z, 0, nmax}], z] * Range[0, nmax]! (* Vaclav Kotesovec, Jun 29 2016 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Johannes W. Meijer, Jun 29 2016
STATUS
approved