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.

A379878 E.g.f. A(x) satisfies A(x) = exp(-x) + x*A(x)^3.

Original entry on oeis.org

1, 0, 1, 8, 97, 1544, 30673, 732752, 20486401, 656713520, 23755416481, 957430990328, 42552022022497, 2067669370359800, 109058922249721585, 6205740584180119424, 378947624701223801089, 24718152376534891564256, 1715322065909959400535361, 126186162087426817989206888
Offset: 0

Views

Author

Seiichi Manyama, Jan 05 2025

Keywords

Crossrefs

Programs

  • Mathematica
    Table[-n! * Sum[(-2*k-1)^(n-k-1) * Binomial[3*k, k] / (n-k)!, {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jan 23 2025 *)
  • PARI
    a(n) = -n!*sum(k=0, n, (-2*k-1)^(n-k-1)*binomial(3*k, k)/(n-k)!);

Formula

a(n) = -n! * Sum_{k=0..n} (-2*k-1)^(n-k-1) * binomial(3*k,k)/(n-k)!.
a(n) ~ (-1)^n * sqrt(-LambertW(-8/27) - 1) * 2^n * n^(n-1) / (3 * exp(n) * LambertW(-8/27)^(n + 1/2)). - Vaclav Kotesovec, Jan 23 2025