The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A349015 G.f. A(x) satisfies: A(x) = 1 + x * A(x) / (1 - x) - x * A(x)^2. 2
1, 0, 1, 0, 2, -1, 5, -6, 16, -28, 62, -125, 267, -565, 1213, -2618, 5686, -12418, 27248, -60048, 132848, -294930, 656878, -1467257, 3286219, -7378239, 16603459, -37441989, 84599855, -191501531, 434224405, -986161958, 2243009870, -5108859820, 11651743902 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} a(k) * (1 - a(n-k-1)).
a(n) = 1 - Sum_{k=0..n-1} (-1)^k * A007477(k).
a(n) ~ 3^(1 + n) * (1/((1 - 2/(19 - 3*sqrt(33))^(1/3) - (1/2)*(19 - 3*sqrt(33))^(1/3))^n * ((19 - 3*sqrt(33))^(1/6)*(2 + (19 - 3*sqrt(33))^(1/3))^2 * n^(3/2) * sqrt(((-1951699 + 339747*sqrt(33))*Pi) / (-70717234 + 12310290*sqrt(33) + (19 - 3*sqrt(33))^(2/3) * (-3903398 + 679494*sqrt(33)) + (19 - 3*sqrt(33))^(1/3) * (-35358617 + 6155145*sqrt(33))))))). - Vaclav Kotesovec, Nov 17 2021
MATHEMATICA
nmax = 34; A[_] = 0; Do[A[x_] = 1 + x A[x]/(1 - x) - x A[x]^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[a[k] (1 - a[n - k - 1]), {k, 0, n - 1}]; Table[a[n], {n, 0, 34}]
CROSSREFS
Sequence in context: A095242 A357179 A125080 * A217105 A143892 A129321
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Nov 05 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 12 22:09 EDT 2024. Contains 372495 sequences. (Running on oeis4.)