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.

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

Original entry on oeis.org

1, 1, 10, 156, 3656, 115400, 4595232, 221281312, 12510826624, 812633118336, 59642105050880, 4881685773730304, 440905471531302912, 43559980305765793792, 4673231270870843441152, 541042726968231082967040, 67236501012517546330062848, 8927220151967826907452440576
Offset: 0

Views

Author

Seiichi Manyama, Mar 12 2025

Keywords

Crossrefs

Programs

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

Formula

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