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.

A214553 G.f. A(x) satisfies A(x) = 1 + 4*x*A(x)^(5/2).

Original entry on oeis.org

1, 4, 40, 520, 7680, 122360, 2050048, 35600400, 635043840, 11566760920, 214221455360, 4021962900592, 76374500966400, 1464312851075760, 28307243610931200, 551140224522544160, 10797908842864705536, 212721273248318069400, 4211238736846158561280
Offset: 0

Views

Author

Paul D. Hanna, Jul 20 2012

Keywords

Comments

Radius of convergence of g.f. A(x) is r = (3/5)^(5/2) / 6 where A(r) = 5/3.
The two-parameter Fuss-Catalan sequence is A_n(p,r) := r*binomial(n*p + r, n)/(n*p + r). This sequence is 4^n*A_n(5/2,1). - Peter Bala, Oct 15 2015

Examples

			G.f.: A(x) = 1 + 4*x + 40*x^2 + 520*x^3 + 7680*x^4 + 122360*x^5 + 2050048*x^6 +... where A(x) = 1 + 4*x*A(x)^(5/2).
Radius of convergence: r = (3/5)^(5/2)/6 = 0.046475800...
Related expansions:
A(x)^(5/2) = 1 + 10*x + 130*x^2 + 1920*x^3 + 30590*x^4 + 512512*x^5 +...
A(x)^(1/2) = 1 + 2*x + 18*x^2 + 224*x^3 + 3230*x^4 + 50688*x^5 + 840420*x^6 + 14483456*x^7 + 256856886*x^8 +...
		

Crossrefs

Programs

  • Maple
    seq(4^n*binomial(5*n/2,n)/(3*n/2+1),n=0..50); # Robert Israel, Oct 18 2015
  • Mathematica
    m = 19; A[_] = 0;
    Do[A[x_] = 1 + 4*x*A[x]^(5/2) + O[x]^m, {m}];
    CoefficientList[A[x], x] (* Jean-François Alcover, Oct 20 2019 *)
  • PARI
    {a(n)=4^n*binomial(5*n/2,n)/(3*n/2+1)}
    
  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A =1+4*x*(A+x*O(x^n))^(5/2));polcoeff(A,n)}
    for(n=0,30,print1(a(n),", "))

Formula

a(n) = 4^n * binomial(5*n/2, n) / (3*n/2 + 1).
From Peter Bala, Oct 13 2015: (Start)
O.g.f. A(x) satisfies A(x) = C(4*x*sqrt(A)), where C(x) = (1 - sqrt(1 - 4*x))/(2*x) is the o.g.f. for the Catalan numbers A000108.
Sqrt(A(x)) = 1/x * series reversion( x/sqrt(C(4*x)) ) is the o.g.f. for A245112. (End)
D-finite with recurrence 3*n*(n-1)*(3*n+2)*(3*n-2)*a(n) - 20*(5*n-4)*(5*n-8)*(5*n-2)*(5*n-6)*a(n-2) = 0. - R. J. Mathar, Nov 22 2024
G.f. A(x) satisfies A(x) = 1/A(-x*A(x)^4). - Seiichi Manyama, Jun 17 2025
a(n) ~ 2^(n+1/2) * 5^((5*n+1)/2) / (3^(3*(n+1)/2) * n^(3/2) * sqrt(Pi)). - Amiram Eldar, Sep 02 2025