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!)
A349037 G.f. A(x) satisfies: A(x) = 1 / (1 - x - x^2 * A(-4*x)). 2
1, 1, 2, -1, 29, 116, 7701, -103563, 31343898, 1759289595, 2057705197793, -457070362176172, 2156748187140412361, 1921405067209313680505, 36188075164863127910696914, -128870933294125665748520896793, 9713904752944734908048841134573557 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = a(n-1) + Sum_{k=0..n-2} (-4)^k * a(k) * a(n-k-2).
MATHEMATICA
nmax = 16; A[_] = 0; Do[A[x_] = 1/(1 - x - x^2 A[-4 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = a[n - 1] + Sum[(-4)^k a[k] a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 16}]
CROSSREFS
Sequence in context: A246909 A249269 A245621 * A351710 A321442 A005693
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 27 13:14 EDT 2024. Contains 372019 sequences. (Running on oeis4.)