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.

A377575 E.g.f. satisfies A(x) = (1 + x * exp(x) * A(x))^3.

Original entry on oeis.org

1, 3, 30, 483, 11100, 334035, 12478698, 558058179, 29104042152, 1735547479587, 116539815603630, 8704631976941043, 716019297815418732, 64326542671867079955, 6267631435921525638738, 658359915933162131600355, 74168964857766293453918928, 8921104769819780822122624323
Offset: 0

Views

Author

Seiichi Manyama, Nov 02 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=0, n, k^(n-k)*binomial(3*k+3, k)/((k+1)*(n-k)!));

Formula

E.g.f.: B(x)^3, where B(x) is the e.g.f. of A364983.
a(n) = n! * Sum_{k=0..n} k^(n-k) * binomial(3*k+3,k)/( (k+1)*(n-k)! ).