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!)
A234869 3*binomial(11*n+3,n)/(11*n+3). 9
1, 3, 36, 595, 11385, 237006, 5212064, 119126865, 2801765835, 67365151700, 1648369018296, 40914062713953, 1027625691201200, 26069631471224820, 667024542735629400, 17193066926119888716, 446028709678732029135, 11636873606948476550895 (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=11, r=3.
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, with p=11, r=3.
MATHEMATICA
Table[3 Binomial[11 n + 3, n]/(11 n + 3), {n, 0, 30}] (* Vincenzo Librandi, Jan 01 2014 *)
PROG
(PARI) a(n) = 3*binomial(11*n+3, n)/(11*n+3);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(11/3))^3+x*O(x^n)); polcoeff(B, n)}
(Magma) [3*Binomial(11*n+3, n)/(11*n+3): n in [0..30]]; // Vincenzo Librandi, Jan 01 2014
CROSSREFS
Sequence in context: A245114 A276018 A291096 * A371660 A305991 A203493
KEYWORD
nonn
AUTHOR
Tim Fulford, Jan 01 2014
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 August 12 07:33 EDT 2024. Contains 375085 sequences. (Running on oeis4.)