login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
OFFSET
0,3
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
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 03 2021
STATUS
approved