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 A349016 #6 Nov 06 2021 09:07:27 %S A349016 1,2,3,12,26,125,317,1642,4492,24188,69174,381613,1123923,6304781, %T A349016 18962485,107682542,329007674,1885923378,5833166568,33685017384, %U A349016 105214504816,611241171298,1924588709710,11236434464097,35617302886643,208815253200975,665665428686531 %N A349016 G.f. A(x) satisfies: A(x) = 1 + x * A(-x) / (1 - x) + x * A(x)^2. %F A349016 a(0) = 1; a(n) = Sum_{k=0..n-1} a(k) * ((-1)^k + a(n-k-1)). %t A349016 nmax = 26; 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] %t A349016 a[0] = 1; a[n_] := a[n] = Sum[a[k] ((-1)^k + a[n - k - 1]), {k, 0, n - 1}]; Table[a[n], {n, 0, 26}] %Y A349016 Cf. A000108, A073157, A215973, A349014, A349015. %K A349016 nonn %O A349016 0,2 %A A349016 _Ilya Gutkovskiy_, Nov 05 2021