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.

A367878 Expansion of e.g.f. 1/(1 + 2 * x * log(1-x)).

Original entry on oeis.org

1, 0, 4, 6, 112, 540, 8688, 78960, 1343872, 18162144, 346968000, 6157134720, 134058110976, 2912224423680, 72152130903552, 1839996238429440, 51471401675489280, 1500206702407741440, 46934038380170391552, 1535198134749947965440
Offset: 0

Views

Author

Seiichi Manyama, Dec 03 2023

Keywords

Crossrefs

Programs

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

Formula

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