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.

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

Original entry on oeis.org

1, 4, 37, 583, 13225, 394681, 14659537, 652829857, 33937422001, 2018665692721, 135274646371561, 10087017309339433, 828563190097478425, 74348364577760978329, 7236649495742795579809, 759466703902106082652321, 85492204279344776678878945, 10275933748282019792253453025
Offset: 0

Views

Author

Seiichi Manyama, Nov 05 2024

Keywords

Crossrefs

Programs

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

Formula

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