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.

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

Original entry on oeis.org

1, 2, 15, 223, 5045, 154161, 5949715, 277816813, 15234148585, 959821848433, 68333878996991, 5425649143910733, 475370226250388221, 45559752911807595865, 4741534923025152367627, 532526268840445510805341, 64198018232238090097818065, 8268729272698380485865553761
Offset: 0

Views

Author

Seiichi Manyama, Jan 05 2025

Keywords

Crossrefs

Programs

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

Formula

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