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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 3, 33, 679, 20905, 863601, 44912347, 2820755183, 207815625073, 17578781394913, 1679410405425571, 178871724214036767, 21017369600310686665, 2700840226820242034321, 376826763817725194699083, 56730569139675562422229711, 9166624006966363722766482913, 1582356756863532248954506939329
Offset: 0

Views

Author

Seiichi Manyama, Jan 30 2025

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=0..n} (n+k+1)^(k-1) * binomial(3*n+1,n-k)/k!.
Showing 1-1 of 1 results.