cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A377746 E.g.f. satisfies A(x) = exp(x) * (1 + x * A(x)^2)^2.

Original entry on oeis.org

1, 3, 31, 637, 19813, 830671, 43938067, 2809979257, 210946285417, 18189526062331, 1771938448807591, 192475338784416469, 23068103047077997069, 3023954831626697490055, 430420617664714578381019, 66110112671342637934719121, 10898800684623601950111879505, 1919585083312849130822156455795
Offset: 0

Views

Author

Seiichi Manyama, Nov 06 2024

Keywords

Crossrefs

Cf. A377740.

Programs

  • PARI
    a(n) = n!*sum(k=0, n, (2*k+1)^(n-k-1)*binomial(4*k+2, k)/(n-k)!);

Formula

a(n) = n! * Sum_{k=0..n} (2*k+1)^(n-k-1) * binomial(4*k+2,k)/(n-k)!.