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!)
A233834 a(n) = 5*binomial(7*n+5,n)/(7*n+5). 10
1, 5, 45, 500, 6200, 82251, 1142295, 16398200, 241379325, 3623534200, 55262073757, 853814730600, 13335836817420, 210225027967325, 3340362288091500, 53443628421286320, 860246972339613855, 13921016318025200505, 226352372251889455000, 3696160728052814340000 (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 = 7, 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: A(x) = {1 + x*A(x)^(p/r)}^r, where p = 7, r = 5.
O.g.f. A(x) = 1/x * series reversion (x/C(x)^5), where C(x) is the o.g.f. for the Catalan numbers A000108. A(x)^(1/5) is the o.g.f. for A002296. - Peter Bala, Oct 14 2015
MATHEMATICA
Table[5 Binomial[7 n + 5, n]/(7 n + 5), {n, 0, 30}]
PROG
(PARI) a(n) = 5*binomial(7*n+5, n)/(7*n+5);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(7/5))^5+x*O(x^n)); polcoeff(B, n)}
(Magma) [5*Binomial(7*n+5, n)/(7*n+5): n in [0..30]];
CROSSREFS
Sequence in context: A195188 A232730 A151831 * A188267 A133305 A316705
KEYWORD
nonn,easy
AUTHOR
Tim Fulford, Dec 16 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 19 07:25 EDT 2024. Contains 370955 sequences. (Running on oeis4.)