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.

A234528 Binomial(10*n+5,n)/(2*n+1).

Original entry on oeis.org

1, 5, 60, 935, 16555, 316251, 6353760, 132321990, 2830853610, 61841702065, 1373736123760, 30935736733230, 704631080073635, 16204866668942000, 375762274309378440, 8775795659568727020, 206241872189050376550, 4873761343609509542490
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=5.

Crossrefs

Programs

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

Formula

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