login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A234508 5*binomial(9*n+5,n)/(9*n+5). 8
1, 5, 55, 775, 12350, 211876, 3818430, 71282640, 1366368375, 26735839650, 531838637759, 10723307329700, 218658647805780, 4501362056183300, 93426735902060000, 1952884185072496992, 41074876852203972645, 868669222741822476975, 18460669540059117038250, 394033629095915025876750, 8443512680148379948569910 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), where p=9, r=5.
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, where p=9, r=5.
MATHEMATICA
Table[5 Binomial[9 n + 5, n]/(9 n + 5), {n, 0, 30}]
PROG
(PARI) a(n) = 5*binomial(9*n+5, n)/(9*n+5);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(9/5))^5+x*O(x^n)); polcoeff(B, n)}
(Magma) [5*Binomial(9*n+5, n)/(9*n+5): n in [0..30]];
CROSSREFS
Sequence in context: A112019 A131846 A144577 * A132865 A294051 A145662
KEYWORD
nonn
AUTHOR
Tim Fulford, Dec 27 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)