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.

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

Original entry on oeis.org

1, 1, 11, 175, 4317, 142561, 5929513, 297901899, 17557448681, 1188110627137, 90804918357261, 7737033497254579, 727253150819898541, 74760871323339663489, 8344094871249960257009, 1004872166403751985971291, 129883465213311163328142417
Offset: 0

Views

Author

Seiichi Manyama, Aug 17 2023

Keywords

Crossrefs

Programs

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

Formula

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