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.

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

Original entry on oeis.org

1, 2, 25, 622, 23601, 1211306, 78585241, 6171434550, 569338685089, 60362321078674, 7232765564919321, 966640735654507838, 142570635491126076625, 23003561321179411452858, 4030628821337323603113241, 762175215630679850520288646, 154707566043362563540600474689
Offset: 0

Views

Author

Seiichi Manyama, Feb 01 2025

Keywords

Crossrefs

Programs

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

Formula

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