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.

A377451 E.g.f. satisfies A(x) = 1/(1 - A(x)^4 * (exp(x) - 1)).

Original entry on oeis.org

1, 1, 11, 241, 8171, 377401, 22118531, 1572752161, 131565858491, 12661132904521, 1378019469008051, 167374385250354481, 22443998566390975211, 3293411316452536046041, 524941525063836265071971, 90316250360918785641307201, 16682672480771981403086626331, 3292860351837963891732540729961
Offset: 0

Views

Author

Seiichi Manyama, Oct 28 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n, (5*k)!/(4*k+1)!*stirling(n, k, 2));

Formula

a(n) = Sum_{k=0..n} (5*k)!/(4*k+1)! * Stirling2(n,k).