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.

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

Original entry on oeis.org

1, 0, 4, 6, 104, 490, 7452, 65534, 1062224, 13825746, 252414020, 4303920742, 89701635960, 1870259792570, 44391086228972, 1085906907998670, 29112549152845472, 813723252665063842, 24402507959486170260, 765358519469125339190
Offset: 0

Views

Author

Seiichi Manyama, Dec 03 2023

Keywords

Crossrefs

Programs

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

Formula

a(0) = 1; a(n) = 2 * n * Sum_{k=2..n} binomial(n-1,k-1) * a(n-k).
a(n) = n! * Sum_{k=0..floor(n/2)} 2^k * k! * Stirling2(n-k,k)/(n-k)!.