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.

Showing 1-1 of 1 results.

A368236 Expansion of e.g.f. 1/(exp(-x) - 2*x).

Original entry on oeis.org

1, 3, 17, 145, 1649, 23441, 399865, 7957881, 180997857, 4631289697, 131670338921, 4117813225769, 140486274499345, 5192341564319313, 206669931188282073, 8813624820931402201, 400922608851086766017, 19377398675442025382081, 991639882680576890150089
Offset: 0

Views

Author

Seiichi Manyama, Dec 18 2023

Keywords

Crossrefs

Programs

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

Formula

a(0) = 1; a(n) = 2*n*a(n-1) + Sum_{k=1..n} (-1)^(k-1) * binomial(n,k) * a(n-k).
a(n) = n! * Sum_{k=0..n} 2^(n-k) * (n-k+1)^k / k!.
a(n) ~ n! / (2 * LambertW(1/2)^(n+1) * (LambertW(1/2) + 1)). - Vaclav Kotesovec, Dec 29 2023
Showing 1-1 of 1 results.