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.

A234527 2*binomial(10*n+4,n)/(5*n+2).

Original entry on oeis.org

1, 4, 46, 704, 12341, 234260, 4685898, 97274544, 2075959314, 45262862788, 1003884090440, 22577660493024, 513698787408521, 11802947663348800, 273471432969603198, 6382396843322710560, 149902629054480517590, 3540479504783000035464
Offset: 0

Views

Author

Tim Fulford, Dec 27 2013

Keywords

Comments

Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), where p=10, r=4.

Crossrefs

Programs

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

Formula

G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, where p=10, r=4.