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

A371116
E.g.f. satisfies A(x) = 1 + x^2*(exp(x*A(x)) - 1).
2
1, 0, 0, 6, 12, 20, 750, 7602, 47096, 589752, 11823930, 169812830, 2287327812, 46793930196, 1061518458182, 21163158296490, 458344052450160, 12165772611938672, 329982890581149426, 8764089834124752822, 255655700917556204540, 8220667673623130347020
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} Stirling2(n-2*k,k)/(n-3*k+1)!.
MATHEMATICA
nmax = 20; CoefficientList[Series[1 - x^2 - ProductLog[-E^(x*(1 - x^2))*x^3]/x, {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Mar 11 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\3, stirling(n-2*k, k, 2)/(n-3*k+1)!);
CROSSREFS
Cf. A371118.
Sequence in context: A366564 A247212 A358013 * A356949 A375827 A362892
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 11 2024
STATUS
approved