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!)
A360048 a(n) = Sum_{k=0..floor(n/2)} (-1)^k * binomial(n+1,2*k+1) * Catalan(k). 3
1, 2, 2, 0, -3, -2, 9, 24, 11, -66, -152, -8, 587, 1082, -438, -5248, -7733, 7942, 47502, 53792, -105313, -430118, -343043, 1249800, 3866557, 1730018, -13996096, -34243896, -1947203, 150962374, 296101865, -121857184, -1582561869, -2468098042, 2529520766 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n+1 - Sum_{k=0..n-2} a(k) * a(n-k-2).
G.f. A(x) satisfies: A(x) = 1/(1-x)^2 - x^2 * A(x)^2.
G.f.: 2 / ( (1-x) * (1-x + sqrt((1-x)^2 + 4*x^2)) ).
D-finite with recurrence (n+2)*a(n) +3*(-n-1)*a(n-1) +(7*n-4)*a(n-2) +5*(-n+1)*a(n-3)=0. - R. J. Mathar, Jan 25 2023
PROG
(PARI) a(n) = sum(k=0, n\2, (-1)^k*binomial(n+1, 2*k+1)*binomial(2*k, k)/(k+1));
(PARI) my(N=40, x='x+O('x^N)); Vec(2/((1-x)*(1-x+sqrt((1-x)^2+4*x^2))))
CROSSREFS
Cf. A000108.
Sequence in context: A327028 A271707 A341445 * A127899 A128615 A087508
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 May 22 23:49 EDT 2024. Contains 372758 sequences. (Running on oeis4.)