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.

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

Original entry on oeis.org

1, 1, 9, 127, 2769, 80861, 2976733, 132394011, 6909143265, 414041227417, 28025981914581, 2115049310887679, 176095675272002929, 16035108243371426613, 1585349332849711046829, 169128107565128349122851, 19365426435579375683158977, 2368882573995841615546652081
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(2*k, n-k)/k!);

Formula

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