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!)
A234464 5*binomial(8*n+5, n)/(8*n+5). 9
1, 5, 50, 630, 8925, 135751, 2165800, 35759900, 605902440, 10475490875, 184068392508, 3277575482090, 59012418601500, 1072549882307925, 19651558477204200, 362592313327737592, 6731396321743423000, 125645122201355505000, 2356570385677427920770 (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), this is the case p=8, 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=8, r=5.
MATHEMATICA
Table[5 Binomial[8 n + 5, n]/(8 n + 5), {n, 0, 40}] (* Vincenzo Librandi, Dec 26 2013 *)
PROG
(PARI) a(n) = 5*binomial(8*n+5, n)/(8*n+5);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(8/5))^5+x*O(x^n)); polcoeff(B, n)}
(Magma) [5*Binomial(8*n+5, n)/(8*n+5): n in [0..30]]; // Vincenzo Librandi, Dec 26 2012
CROSSREFS
Sequence in context: A156058 A232997 A357405 * A047736 A185272 A141316
KEYWORD
nonn
AUTHOR
Tim Fulford, Dec 26 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 March 18 22:56 EDT 2024. Contains 370952 sequences. (Running on oeis4.)