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”).

A375651
Expansion of e.g.f. exp(x + x^2 * exp(x)).
1
1, 1, 3, 13, 61, 341, 2221, 16045, 127065, 1097353, 10231561, 102133241, 1085537509, 12228389629, 145369356861, 1816987580101, 23804010114481, 325966118893457, 4654236956576977, 69138950655122929, 1066449047096819901, 17050138691821539781
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (k+1)^(n-2*k) / (k! * (n-2*k)!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x+x^2*exp(x))))
(PARI) a(n) = n!*sum(k=0, n\2, (k+1)^(n-2*k)/(k!*(n-2*k)!));
CROSSREFS
Sequence in context: A367059 A243014 A258799 * A246689 A355987 A373683
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 22 2024
STATUS
approved