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.

A382029 E.g.f. A(x) satisfies A(x) = exp(x*C(x*A(x)^2)), where C(x) = 1 + x*C(x)^2 is the g.f. of A000108.

Original entry on oeis.org

1, 1, 3, 31, 529, 12601, 385891, 14440567, 638576065, 32580927505, 1883889232291, 121742057314351, 8695278706372369, 680187946863332233, 57833833258995140803, 5310742450917819399751, 523793286672328763358721, 55223769332070053104438945, 6197871354601209094032190147
Offset: 0

Views

Author

Seiichi Manyama, Mar 12 2025

Keywords

Crossrefs

Programs

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

Formula

Let F(x) be the e.g.f. of A379690. F(x) = log(A(x))/x = C(x*A(x)^2).
E.g.f.: A(x) = exp( Series_Reversion( x*(1 - x*exp(2*x)) ) ).
a(n) = n! * Sum_{k=0..n-1} (2*k+1)^(n-k-1) * binomial(n+k,k)/((n+k) * (n-k-1)!) for n > 0.