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!)
A307374 G.f. A(x) satisfies: A(x) = 1 + x - x^2*A(x)^2. 2
1, 1, -1, -2, 1, 6, 1, -18, -16, 50, 93, -112, -428, 98, 1713, 936, -6004, -8382, 17512, 47608, -33826, -221936, -36335, 892164, 862666, -3051022, -6076072, 8026380, 32247334, -8222288, -144487267, -81500652, 555489738, 801700858, -1751543424, -4898513044 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = a(1) = 1; a(n+2) = -Sum_{k=0..n} a(k)*a(n-k).
EXAMPLE
G.f.: A(x) = 1 + x - x^2 - 2*x^3 + x^4 + 6*x^5 + x^6 - 18*x^7 - 16*x^8 + 50*x^9 + 93*x^10 - 112*x^11 - 428*x^12 + ...
MATHEMATICA
terms = 35; A[_] = 0; Do[A[x_] = 1 + x - x^2 A[x]^2 + O[x]^(terms + 1) // Normal, {terms + 1}]; CoefficientList[A[x], x]
a[0] = a[1] = 1; a[n_] := a[n] = -Sum[a[k] a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 35}]
CROSSREFS
Sequence in context: A280736 A279095 A186283 * A173279 A277440 A321597
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Apr 06 2019
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 April 25 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)