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.

A377826 E.g.f. satisfies A(x) = (1 + x) * exp(x * A(x)).

Original entry on oeis.org

1, 2, 7, 49, 489, 6521, 108643, 2178107, 51084337, 1373054833, 41624314371, 1405311853595, 52299954524953, 2127347522554073, 93902399411048803, 4470613587492385051, 228362858274694209249, 12458393118650371672673, 722983769486947261178371
Offset: 0

Views

Author

Seiichi Manyama, Nov 09 2024

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: (1+x) * exp( -LambertW(-x*(1+x)) ).
E.g.f.: -LambertW(-x*(1+x))/x.
a(n) = n! * Sum_{k=0..n} (k+1)^(k-1) * binomial(k+1,n-k)/k!.
a(n) ~ sqrt(-2*sqrt(1 + 4*exp(-1)) + 2 + 8*exp(-1)) * 2^n * n^(n-1) / ((-1 + sqrt(1 + 4*exp(-1)))^(n+1) * exp(n - 1/2)). - Vaclav Kotesovec, Nov 09 2024