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.

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

Original entry on oeis.org

1, 2, 18, 270, 5936, 173330, 6335772, 278724362, 14350790064, 847007698338, 56397332340020, 4182866692785242, 342022887565717800, 30570009715185100082, 2965368922693150575084, 310276298423966343555690, 34834957115496822249510752, 4177193847524372747798263106
Offset: 0

Views

Author

Seiichi Manyama, Oct 30 2024

Keywords

Crossrefs

Programs

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

Formula

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