The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A360057 a(n) = Sum_{k=0..n} binomial(n+4*k+4,n-k) * Catalan(k). 4
1, 6, 27, 125, 644, 3643, 21974, 138395, 898695, 5970927, 40386209, 277127148, 1924349756, 13496536510, 95467320600, 680260392219, 4878382821267, 35182209381590, 255000022472565, 1856501085686340, 13570366067586294, 99554601986349471, 732756800760507312 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = binomial(n+4,4) + Sum_{k=0..n-1} a(k) * a(n-k-1).
G.f. A(x) satisfies A(x) = 1/(1-x)^5 + x * A(x)^2.
G.f.: 2 / ( (1-x)^5 * (1 + sqrt( 1 - 4*x/(1-x)^5 )) ).
D-finite with recurrence (n+1)*a(n) +2*(-5*n+1)*a(n-1) +(19*n-11)*a(n-2) +20*(-n+2)*a(n-3) +15*(n-3)*a(n-4) +6*(-n+4)*a(n-5) +(n-5)*a(n-6)=0. - R. J. Mathar, Jan 25 2023
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+4*k+4, n-k)*binomial(2*k, k)/(k+1));
(PARI) my(N=30, x='x+O('x^N)); Vec(2/((1-x)^5*(1+sqrt(1-4*x/(1-x)^5))))
CROSSREFS
Sequence in context: A002912 A030297 A045500 * A109115 A038176 A104745
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 23 2023
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 May 13 00:07 EDT 2024. Contains 372497 sequences. (Running on oeis4.)