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

A356787
E.g.f. satisfies A(x) = 1/(1 - x * A(x))^(x * A(x)^3).
5
1, 0, 2, 3, 116, 630, 24054, 273000, 11105072, 207213552, 9175467960, 245785969440, 11954556125544, 421832039016960, 22609694372667024, 991695134898861120, 58565049582761702400, 3065736317041568378880, 199024242549235933723200
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (n+2*k+1)^(k-1) * |Stirling1(n-k,k)|/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (n+2*k+1)^(k-1)*abs(stirling(n-k, k, 1))/(n-k)!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 27 2022
STATUS
approved