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!)
A349046 G.f. A(x) satisfies: A(x) = 1 / (1 + x - 2 * x * A(-4*x)). 1
1, 1, -7, -239, 30185, 15518977, -31752293287, -260178568173071, 8525011498792301513, 1117407361630407158712289, -585841036144574163016069731271, -1228598872333737909217248906305521967, 10306231872061986643099600924851012311829929 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = -a(n-1) + 2 * Sum_{k=0..n-1} (-4)^k * a(k) * a(n-k-1).
MATHEMATICA
nmax = 12; A[_] = 0; Do[A[x_] = 1/(1 + x - 2 x A[-4 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -a[n - 1] + 2 Sum[(-4)^k a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 12}]
CROSSREFS
Sequence in context: A366703 A185389 A159967 * A139057 A251594 A210248
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Nov 06 2021
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 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)