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.

A234462 a(n) = 3*binomial(8*n+3,n)/(8*n+3).

Original entry on oeis.org

1, 3, 27, 325, 4488, 67158, 1059380, 17346582, 292046040, 5023824887, 87915626370, 1560176040519, 28011228029512, 507874087572600, 9286024289123268, 171026036066072924, 3169969149156895800, 59085490354010508600, 1106795192170066119435
Offset: 0

Views

Author

Tim Fulford, Dec 26 2013

Keywords

Comments

Fuss-Catalan sequence is a(n,p,r) = r*binomial(n*p + r, n)/(n*p + r), this is the case p = 8, r = 3.

Crossrefs

Programs

  • Magma
    [3*Binomial(8*n+3, n)/(8*n+3): n in [0..30]]; // Vincenzo Librandi, Dec 26 2013
  • Mathematica
    Table[3 Binomial[8 n + 3, n]/(8 n + 3), {n, 0, 40}] (* Vincenzo Librandi, Dec 26 2013 *)
  • PARI
    a(n) = 3/(8*n+3)*binomial(8*n+3,n);
    
  • PARI
    {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(8/3))^3+x*O(x^n)); polcoeff(B, n)}
    

Formula

G.f. satisfies: A(x) = {1 + x*A(x)^(p/r)}^r, where p = 8, r = 3.
A(x^2) = 1/x * series reversion (x/C(x^2)^3), where C(x) = (1 - sqrt(1 - 4*x))/(2*x) is the o.g.f. for the Catalan numbers A000108. A(x)^(1/3) is the o.g.f. for A007556. - Peter Bala, Oct 14 2015