login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A357966
Expansion of e.g.f. exp( x * (exp(x^2) - 1) ).
6
1, 0, 0, 6, 0, 60, 360, 840, 20160, 75600, 1058400, 10311840, 79833600, 1305944640, 11018367360, 174616041600, 2150397849600, 28661419987200, 473667677683200, 6293779652160000, 114484773731328000, 1766543101087564800, 31640707215390873600
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} Stirling2(k,n-2*k)/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x*(exp(x^2)-1))))
(PARI) a(n) = n!*sum(k=0, n\2, stirling(k, n-2*k, 2)/k!);
CROSSREFS
Cf. A353226.
Sequence in context: A262890 A305331 A169769 * A353226 A191688 A375588
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 22 2022
STATUS
approved