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!)
A234529 3*binomial(10*n+6,n)/(5*n+3). 9
1, 6, 75, 1190, 21285, 409266, 8259888, 172593900, 3701885490, 81033954430, 1803028662435, 40658396849388, 927146157991625, 21342995124948000, 495322997953271580, 11576581508367256920, 272239271289546497046, 6437043284012559773100 (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=10, r=6.
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=10, r=6.
MATHEMATICA
Table[3 Binomial[10 n + 6, n]/(5 n + 3), {n, 0, 30}] (* Vincenzo Librandi, Dec 27 2013 *)
PROG
(PARI) a(n) = 3*binomial(10*n+6, n)/(5*n+3);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(5/3))^6+x*O(x^n)); polcoeff(B, n)}
(Magma) [3*Binomial(10*n+6, n)/(5*n+3): n in [0..30]]; // Vincenzo Librandi, Dec 27 2013
CROSSREFS
Sequence in context: A281797 A049235 A129031 * A139088 A193784 A162863
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)