login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A233830
a(n) = 5*binomial(6*n+10,n)/(3*n+5).
4
1, 10, 105, 1170, 13640, 164502, 2036265, 25727800, 330482295, 4303216330, 56672074888, 753573733050, 10103474312100, 136435868978220, 1854009194816745, 25333847134998864, 347880174736462550, 4798137522234602700, 66441427922465470095, 923346006310186106010, 12873823246049001482400
OFFSET
0,2
COMMENTS
Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), this is the case p=6, r=10.
LINKS
J-C. Aval, Multivariate Fuss-Catalan Numbers, arXiv:0711.0906v1, Discrete Math., 308 (2008), 4660-4669.
Thomas A. Dowling, Catalan Numbers Chapter 7
Wojciech Mlotkowski, Fuss-Catalan Numbers in Noncommutative Probability, Docum. Mathm. 15: 939-955.
FORMULA
G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, here p=6, r=10.
From Ilya Gutkovskiy, Sep 14 2018: (Start)
E.g.f.: 6F6(5/3,11/6,2,13/6,7/3,5/2; 1,11/5,12/5,13/5,14/5,3; 46656*x/3125).
a(n) ~ 3^(6*n+19/2)*4^(3*n+5)/(sqrt(Pi)*5^(5*n+19/2)*n^(3/2)). (End)
MATHEMATICA
Table[5 Binomial[6 n + 10, n]/(3 n + 5), {n, 0, 30}]
PROG
(PARI) a(n) = 5*binomial(6*n+10, n)/(3*n+5);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(3/5))^10+x*O(x^n)); polcoeff(B, n)}
(Magma) [5*Binomial(6*n+10, n)/(3*n+5): n in [0..30]];
KEYWORD
nonn
AUTHOR
Tim Fulford, Dec 16 2013
STATUS
approved