This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A352009 #6 Mar 01 2022 07:28:18 %S A352009 1,1,1,-1,-3,-1,5,23,29,-33,-139,-217,13,943,1765,-1545,-8963,-11265, %T A352009 6229,73671,126701,-65713,-567611,-793449,415197,4231583,7471669, %U A352009 -4933529,-37928499,-52823313,28920485,346647351,610476733,-316142785,-2913394667,-4922323705 %N A352009 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (-2)^k * a(k) * a(n-2*k-1). %F A352009 G.f. A(x) satisfies: A(x) = 1 / (1 - x * A(-2*x^2)). %t A352009 a[0] = 1; a[n_] := a[n] = Sum[(-2)^k a[k] a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 35}] %t A352009 nmax = 35; A[_] = 0; Do[A[x_] = 1/(1 - x A[-2 x^2]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %Y A352009 Cf. A015097, A101912, A352010, A352011. %K A352009 sign %O A352009 0,5 %A A352009 _Ilya Gutkovskiy_, Feb 28 2022