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.

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

Original entry on oeis.org

1, 0, 2, 6, 36, 260, 2190, 21882, 248696, 3181320, 45229050, 707208590, 12063902532, 222939837276, 4436813677478, 94605994108290, 2151763873634160, 51999544476324752, 1330540380342907506, 35936656483848501654, 1021700660649312689660
Offset: 0

Views

Author

Seiichi Manyama, Oct 30 2022

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x^2*exp(x))))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, k^(n-2*k)/(n-2*k)!);

Formula

a(n) = n! * Sum_{k=0..floor(n/2)} k^(n - 2*k)/(n - 2*k)!.
a(n) ~ n! / ((1 + LambertW(1/2)) * 2^(n+1) * LambertW(1/2)^n). - Vaclav Kotesovec, Oct 30 2022