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.

A379897 E.g.f. A(x) satisfies A(x) = 1/(exp(-x*A(x)^3) - x).

Original entry on oeis.org

1, 2, 19, 388, 12273, 528216, 28824811, 1907463440, 148449329825, 13287501321472, 1344889039128291, 151888157696186880, 18936317798871433681, 2583256803370493809664, 382764484828432552194875, 61215815097927618654693376, 10510472883169375744953509697, 1928296235410784800904193638400
Offset: 0

Views

Author

Seiichi Manyama, Jan 05 2025

Keywords

Crossrefs

Programs

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

Formula

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