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.

A371317 E.g.f. satisfies A(x) = (exp(x) - 1)/(1 - A(x))^3.

Original entry on oeis.org

0, 1, 7, 109, 2767, 97621, 4411927, 243200749, 15823364767, 1186906701061, 100841639699047, 9571637343623389, 1003836707927846767, 115277656980955696501, 14386616557957088368567, 1938794142849968447054029, 280599557966128999505000767
Offset: 0

Views

Author

Seiichi Manyama, Mar 18 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=1, n, (4*k-2)!/(3*k-1)!*stirling(n, k, 2));

Formula

a(n) = Sum_{k=1..n} (4*k-2)!/(3*k-1)! * Stirling2(n,k).
E.g.f.: Series_Reversion( log(1 + x * (1 - x)^3) ). - Seiichi Manyama, Sep 08 2024