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!)
A348902 G.f. A(x) satisfies: A(x) = 1 / (1 + x - 2 * x * A(4*x)). 4
1, 1, 9, 305, 39705, 20412737, 41846783913, 342892875489361, 11236600170415809849, 1472826135905484728387681, 772188014962631262957890704329, 1619397184353040716422147490531778929, 13584491414647344530078887450781292845554521 (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-1} 2^(2*k+1) * a(k) * a(n-k-1).
a(n) ~ c * 2^(n^2), where c = 2^(7/8) / EllipticTheta(2, 0, 1/sqrt(2)) = 0.6091497110662286155211146043057245512950999410185846745870491125003511... (same constant as in A165941). - Vaclav Kotesovec, Nov 03 2021, updated Apr 21 2024
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] + Sum[2^(2 k + 1) a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 12}]
CROSSREFS
Sequence in context: A196694 A196727 A197067 * A279449 A152437 A296802
KEYWORD
nonn,changed
AUTHOR
Ilya Gutkovskiy, Nov 03 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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)