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.

A234869 3*binomial(11*n+3,n)/(11*n+3).

Original entry on oeis.org

1, 3, 36, 595, 11385, 237006, 5212064, 119126865, 2801765835, 67365151700, 1648369018296, 40914062713953, 1027625691201200, 26069631471224820, 667024542735629400, 17193066926119888716, 446028709678732029135, 11636873606948476550895
Offset: 0

Views

Author

Tim Fulford, Jan 01 2014

Keywords

Comments

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

Crossrefs

Programs

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

Formula

G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, with p=11, r=3.