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.

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

Original entry on oeis.org

1, 4, 28, 272, 3360, 50256, 881616, 17734944, 402278496, 10155145344, 282329361024, 8570500876032, 282047266728192, 10001430040080384, 380152962804068352, 15418451851593596928, 664633482628021493760, 30342827915683778027520
Offset: 0

Views

Author

Seiichi Manyama, Nov 19 2023

Keywords

Crossrefs

Programs

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

Formula

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