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.

A234464 5*binomial(8*n+5, n)/(8*n+5).

Original entry on oeis.org

1, 5, 50, 630, 8925, 135751, 2165800, 35759900, 605902440, 10475490875, 184068392508, 3277575482090, 59012418601500, 1072549882307925, 19651558477204200, 362592313327737592, 6731396321743423000, 125645122201355505000, 2356570385677427920770
Offset: 0

Views

Author

Tim Fulford, Dec 26 2013

Keywords

Comments

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

Crossrefs

Programs

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

Formula

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