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.

A371141 E.g.f. satisfies A(x) = 1 - x*A(x)^3 * log(1 - x).

Original entry on oeis.org

1, 0, 2, 3, 80, 390, 10764, 104160, 3162144, 48889008, 1647798480, 35939566080, 1347110453952, 38272507827840, 1593399505840128, 55860824012535360, 2575479834957911040, 107239963351030433280, 5453101063482843276288, 262319113586136087567360
Offset: 0

Views

Author

Seiichi Manyama, Mar 12 2024

Keywords

Crossrefs

Programs

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

Formula

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