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!)
A234873 7*binomial(11*n+7,n)/(11*n+7). 10
1, 7, 98, 1729, 34300, 730597, 16323468, 377447148, 8956384437, 216859117475, 5336519142108, 133078780790725, 3355661187741408, 85414540549845934, 2191753761503128400, 56636249639625891144, 1472525237190942707955 (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=7.
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=7.
MATHEMATICA
Table[7 Binomial[11 n + 7, n]/(11 n + 7), {n, 0, 30}] (* Vincenzo Librandi, Jan 01 2014 *)
PROG
(PARI) a(n) = 7*binomial(11*n+7, n)/(11*n+7);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(11/7))^7+x*O(x^n)); polcoeff(B, n)}
(Magma) [7*Binomial(11*n+7, n)/(11*n+7): n in [0..30]]; // Vincenzo Librandi, Jan 01 2014
CROSSREFS
Sequence in context: A267664 A237022 A156266 * A051188 A367138 A113134
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 April 27 21:44 EDT 2024. Contains 372020 sequences. (Running on oeis4.)