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!)
A349033 G.f. A(x) satisfies: A(x) = 1 / (1 - x - x * A(-3*x)). 2
1, 2, -2, -34, 826, 70634, -16895162, -12385295242, 27037369868722, 177500531682526034, -3493033395457140741746, -206274103942288894158940594, 36540013650535335202759969693162, 19419007557809179132528500713950083002, -30960092711143410415029705970483650552421802 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = a(n-1) + Sum_{k=0..n-1} (-3)^k * a(k) * a(n-k-1).
MATHEMATICA
nmax = 14; A[_] = 0; Do[A[x_] = 1/(1 - x - x A[-3 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = a[n - 1] + Sum[(-3)^k a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 14}]
CROSSREFS
Sequence in context: A074127 A297795 A024176 * A334470 A286375 A367091
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 May 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)