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.

A233657 a(n) = 10 * binomial(3*n+10,n)/(3*n+10).

Original entry on oeis.org

1, 10, 75, 510, 3325, 21252, 134550, 848250, 5340060, 33622600, 211915132, 1337675430, 8458829925, 53591180360, 340185835500, 2163581913780, 13786238414025, 88004926973250, 562763873596575, 3604713725613000, 23126371951808268, 148594788106641360
Offset: 0

Views

Author

Tim Fulford, Dec 14 2013

Keywords

Comments

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

Crossrefs

Programs

  • Magma
    [10*Binomial(3*n+10, n)/(3*n+10): n in [0..30]];
  • Maple
    A233657:=n->10*binomial(3*n+10,n)/(3*n+10): seq(A233657(n), n=0..20); # Wesley Ivan Hurt, Oct 10 2014
  • Mathematica
    Table[10 Binomial[3 n + 10, n]/(3 n + 10), {n, 0, 30}]
  • PARI
    a(n) = 10*binomial(3*n+10,n)/(3*n+10);
    
  • PARI
    {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(3/10))^10+x*O(x^n)); polcoeff(B, n)}
    

Formula

G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, here p=3, r=10.
+2*n*(n+5)*(2*n+9)*a(n) -3*(3*n+7)*(n+3)*(3*n+8)*a(n-1)=0. - R. J. Mathar, Feb 16 2018
E.g.f.: F([10/3, 11/3, 4], [1, 11/2, 6], 27*x/4), where F is the generalized hypergeometric function. - Stefano Spezia, Oct 08 2019