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!)
A351973 a(n) = (-1)^n + Sum_{k=0..floor((n-1)/2)} a(k) * a(n-2*k-1). 4
1, 0, 1, 0, 1, 1, 2, 2, 3, 4, 6, 9, 12, 18, 24, 36, 49, 72, 99, 144, 200, 289, 404, 581, 816, 1168, 1646, 2350, 3320, 4730, 6692, 9522, 13487, 19174, 27177, 38614, 54757, 77771, 110318, 156646, 222246, 315526, 447719, 635569, 901924, 1280257, 1816886, 2578911 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 / ((1 + x) * (1 - x * A(x^2))).
MATHEMATICA
a[n_] := a[n] = (-1)^n + Sum[a[k] a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 47}]
nmax = 47; A[_] = 0; Do[A[x_] = 1/((1 + x) (1 - x A[x^2])) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A005856 A157876 A289433 * A212264 A174650 A107293
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 26 2022
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 September 4 08:50 EDT 2024. Contains 375679 sequences. (Running on oeis4.)