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.

A366459 Expansion of e.g.f. -log(1 - x^2 * exp(x)).

Original entry on oeis.org

0, 0, 2, 6, 24, 140, 990, 8442, 84056, 955656, 12227130, 173812430, 2717859012, 46362339036, 856770362630, 17050946225250, 363576478312560, 8269357341437072, 199837364514425586, 5113346326011170838, 138106722548779770620, 3926456810081828991780
Offset: 0

Views

Author

Seiichi Manyama, Dec 14 2023

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=1..floor(n/2)} k^(n-2*k-1)/(n-2*k)!.
a(n) ~ (n-1)! / (2^n *LambertW(1/2)^n). - Vaclav Kotesovec, Dec 29 2023