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.

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

Original entry on oeis.org

1, 1, 14, 342, 12872, 659280, 42828912, 3375009568, 312860626304, 33361836534144, 4023352486200320, 541461682626399744, 80448618080927609856, 13079749459734097573888, 2309915877337042992324608, 440332184936376095626076160, 90117169223076699520606896128
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(5*k+1, k)/((5*k+1)*(n-k)!));

Formula

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