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

A364942
E.g.f. satisfies A(x) = exp( x*A(x)^2 / (1 - x*A(x))^3 ).
3
1, 1, 11, 193, 5037, 176221, 7755433, 411995529, 25665442841, 1835264297881, 148192928581581, 13338664928207389, 1324344628799752981, 143792046846092303829, 16949599953405295395521, 2155710634160924802161041, 294250014166281073851809457
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..n} (n+k+1)^(k-1) * binomial(n+2*k-1,n-k)/k!.
PROG
(PARI) a(n) = n!*sum(k=0, n, (n+k+1)^(k-1)*binomial(n+2*k-1, n-k)/k!);
CROSSREFS
Sequence in context: A258295 A213691 A112127 * A142996 A201185 A345342
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 14 2023
STATUS
approved