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!)
A360103 a(n) = Sum_{k=0..n} binomial(n+4*k,n-k) * Catalan(k). 4
1, 2, 9, 49, 283, 1715, 10793, 69906, 463031, 3122264, 21363065, 147951489, 1035173405, 7306326465, 51959150713, 371950057003, 2678083379707, 19381867703946, 140915907625531, 1028760981192771, 7538511404971231, 55427326349613665, 408789584900354397 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies A(x) = 1/(1-x) + x * A(x)^2 / (1-x)^4.
G.f.: (1/(1-x)) * c(x/(1-x)^5), where c(x) is the g.f. of A000108.
D-finite with recurrence (n+1)*a(n) +2*(-5*n+3)*a(n-1) +(19*n-47)*a(n-2) +20*(-n+4)*a(n-3) +5*(3*n-17)*a(n-4) +2*(-3*n+22)*a(n-5) +(n-9)*a(n-6)=0. - R. J. Mathar, Mar 12 2023
MAPLE
A360103 := proc(n)
add(binomial(n+4*k, n-k)*A000108(k), k=0..n) ;
end proc:
seq(A360103(n), n=0..40) ; # R. J. Mathar, Mar 12 2023
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+4*k, n-k)*binomial(2*k, k)/(k+1));
(PARI) my(N=30, x='x+O('x^N)); Vec(2/((1-x)*(1+sqrt(1-4*x/(1-x)^5))))
CROSSREFS
Partial sums of A360101.
Sequence in context: A295944 A356632 A224140 * A370345 A000167 A345750
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 25 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 1 23:54 EDT 2024. Contains 372178 sequences. (Running on oeis4.)