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!)
A233657 a(n) = 10 * binomial(3*n+10,n)/(3*n+10). 3
1, 10, 75, 510, 3325, 21252, 134550, 848250, 5340060, 33622600, 211915132, 1337675430, 8458829925, 53591180360, 340185835500, 2163581913780, 13786238414025, 88004926973250, 562763873596575, 3604713725613000, 23126371951808268, 148594788106641360 (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=3, r=10.
LINKS
David Bevan, Robert Brignall, Andrew Elvey Price and Jay Pantone, A structural characterisation of Av(1324) and new bounds on its growth rate, arXiv preprint arXiv:1711.10325 [math.CO], 2017-2019.
J-C. Aval, Multivariate Fuss-Catalan Numbers, arXiv:0711.0906 [math.CO], 2007; 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 (2010).
Emanuele Munarini, Shifting Property for Riordan, Sheffer and Connection Constants Matrices, Journal of Integer Sequences, Vol. 20 (2017), Article 17.8.2.
FORMULA
G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, here p=3, r=10.
+2*n*(n+5)*(2*n+9)*a(n) -3*(3*n+7)*(n+3)*(3*n+8)*a(n-1)=0. - R. J. Mathar, Feb 16 2018
E.g.f.: F([10/3, 11/3, 4], [1, 11/2, 6], 27*x/4), where F is the generalized hypergeometric function. - Stefano Spezia, Oct 08 2019
MAPLE
A233657:=n->10*binomial(3*n+10, n)/(3*n+10): seq(A233657(n), n=0..20); # Wesley Ivan Hurt, Oct 10 2014
MATHEMATICA
Table[10 Binomial[3 n + 10, n]/(3 n + 10), {n, 0, 30}]
PROG
(PARI) a(n) = 10*binomial(3*n+10, n)/(3*n+10);
(PARI) {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(3/10))^10+x*O(x^n)); polcoeff(B, n)}
(Magma) [10*Binomial(3*n+10, n)/(3*n+10): n in [0..30]];
CROSSREFS
Column 5 of A092276.
Sequence in context: A111998 A026935 A110127 * A346842 A081017 A238987
KEYWORD
nonn,easy
AUTHOR
Tim Fulford, Dec 14 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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)