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-2 of 2 results.

A380511 Expansion of e.g.f. exp(x*G(x)^2) where G(x) = 1 + x*G(x)^3 is the g.f. of A001764.

Original entry on oeis.org

1, 1, 5, 55, 961, 23141, 711421, 26631235, 1175535425, 59786520841, 3442729157461, 221413508687471, 15730688410899265, 1223574846548300845, 103417508018836074701, 9437941200860641295611, 924934291227615821904001, 96881241931552168636182545, 10801002623361396194857667365
Offset: 0

Views

Author

Seiichi Manyama, Jan 26 2025

Keywords

Crossrefs

Programs

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

Formula

a(n) = 2 * n! * Sum_{k=0..n-1} binomial(2*n+k,k)/((2*n+k) * (n-k-1)!) for n > 0.
a(n) = U(1-n, 2-3*n, 1), where U is the Tricomi confluent hypergeometric function. - Stefano Spezia, Jan 26 2025
E.g.f.: exp( Series_Reversion( x*(1-x)^2 ) ). - Seiichi Manyama, Mar 15 2025

A382059 E.g.f. A(x) satisfies A(x) = exp(x*B(x*A(x))^3), where B(x) = 1 + x*B(x)^4 is the g.f. of A002293.

Original entry on oeis.org

1, 1, 7, 127, 3733, 152161, 7939261, 505087843, 37920697753, 3281899787137, 321700411900441, 35227497466867531, 4262151791317099285, 564639582580738851265, 81290104199287214904037, 12637400195063381931755731, 2109868901338065949399370161, 376504852688521502050554789889
Offset: 0

Views

Author

Seiichi Manyama, Mar 13 2025

Keywords

Crossrefs

Programs

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

Formula

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