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.

A234461 a(n) = binomial(8*n+2,n)/(4*n+1).

Original entry on oeis.org

1, 2, 17, 200, 2728, 40508, 635628, 10368072, 174047640, 2987139122, 52177566870, 924548764752, 16578073731752, 300252605231600, 5484727796499708, 100933398334075824, 1869468985400220600, 34823332479175275600, 651947852922093741585
Offset: 0

Views

Author

Tim Fulford, Dec 26 2013

Keywords

Comments

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

Crossrefs

Programs

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

Formula

G.f. satisfies: A(x) = {1 + x*A(x)^(p/r)}^r, where p = 8, r = 2.
a(n) = 2*binomial(8n+1,n-1)/n for n>0, a(0)=1. [Bruno Berselli, Jan 19 2014]
A(x^3) = 1/x * series reversion (x/C(x^3)^2), where C(x) = (1 - sqrt(1 - 4*x))/(2*x) is the o.g.f. for the Catalan numbers A000108. A(x)^(1/2) is the o.g.f. for A007556. - Peter Bala, Oct 14 2015