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!)
A360050 a(n) = Sum_{k=0..floor(n/4)} (-1)^k * binomial(n+3,4*k+3) * Catalan(k). 4
1, 4, 10, 20, 34, 48, 48, 0, -163, -548, -1274, -2340, -3255, -2224, 5304, 28560, 82379, 182300, 322102, 410700, 133128, -1295264, -5440600, -14733680, -31384533, -52870668, -59633454, 11449780, 312532426, 1137823168, 2918752832, 5961965824, 9464314955 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = binomial(n+3,3) - Sum_{k=0..n-4} a(k) * a(n-k-4).
G.f. A(x) satisfies: A(x) = 1/(1-x)^4 - x^4 * A(x)^2.
G.f.: 2 / ( (1-x)^2 * ((1-x)^2 + sqrt((1-x)^4 + 4*x^4)) ).
D-finite with recurrence (n+4)*a(n) +5*(-n-3)*a(n-1) +10*(n+2)*a(n-2) +10*(-n-1)*a(n-3) +(9*n-8)*a(n-4) +5*(-n+1)*a(n-5) =0. - R. J. Mathar, Jan 25 2023
PROG
(PARI) a(n) = sum(k=0, n\4, (-1)^k*binomial(n+3, 4*k+3)*binomial(2*k, k)/(k+1));
(PARI) my(N=40, x='x+O('x^N)); Vec(2/((1-x)^2*((1-x)^2+sqrt((1-x)^4+4*x^4))))
CROSSREFS
Cf. A000108.
Sequence in context: A374715 A008124 A019457 * A099589 A008141 A119651
KEYWORD
sign
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 August 16 10:17 EDT 2024. Contains 375174 sequences. (Running on oeis4.)