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.

A233834 a(n) = 5*binomial(7*n+5,n)/(7*n+5).

Original entry on oeis.org

1, 5, 45, 500, 6200, 82251, 1142295, 16398200, 241379325, 3623534200, 55262073757, 853814730600, 13335836817420, 210225027967325, 3340362288091500, 53443628421286320, 860246972339613855, 13921016318025200505, 226352372251889455000, 3696160728052814340000
Offset: 0

Views

Author

Tim Fulford, Dec 16 2013

Keywords

Comments

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

Crossrefs

Programs

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

Formula

G.f. satisfies: A(x) = {1 + x*A(x)^(p/r)}^r, where p = 7, r = 5.
O.g.f. A(x) = 1/x * series reversion (x/C(x)^5), where C(x) is the o.g.f. for the Catalan numbers A000108. A(x)^(1/5) is the o.g.f. for A002296. - Peter Bala, Oct 14 2015