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

A377746
E.g.f. satisfies A(x) = exp(x) * (1 + x * A(x)^2)^2.
0
1, 3, 31, 637, 19813, 830671, 43938067, 2809979257, 210946285417, 18189526062331, 1771938448807591, 192475338784416469, 23068103047077997069, 3023954831626697490055, 430420617664714578381019, 66110112671342637934719121, 10898800684623601950111879505, 1919585083312849130822156455795
OFFSET
0,2
FORMULA
a(n) = n! * Sum_{k=0..n} (2*k+1)^(n-k-1) * binomial(4*k+2,k)/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n, (2*k+1)^(n-k-1)*binomial(4*k+2, k)/(n-k)!);
CROSSREFS
Cf. A377740.
Sequence in context: A222895 A373754 A105293 * A368489 A104841 A092552
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 06 2024
STATUS
approved