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 A349045 #6 Nov 07 2021 02:36:55 %S A349045 1,1,-5,-101,5293,869269,-420787937,-614362594985,2685998620138297, %T A349045 35251053957604379689,-1387622522805833315933693, %U A349045 -163878220402091372424795125261,58060742480730955957157145945031525,61711834213019891772066352604323845604861 %N A349045 G.f. A(x) satisfies: A(x) = 1 / (1 + x - 2 * x * A(-3*x)). %F A349045 a(0) = 1; a(n) = -a(n-1) + 2 * Sum_{k=0..n-1} (-3)^k * a(k) * a(n-k-1). %t A349045 nmax = 13; A[_] = 0; Do[A[x_] = 1/(1 + x - 2 x A[-3 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %t A349045 a[0] = 1; a[n_] := a[n] = -a[n - 1] + 2 Sum[(-3)^k a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 13}] %Y A349045 Cf. A001003, A015098, A348188, A349038, A349046. %K A349045 sign %O A349045 0,3 %A A349045 _Ilya Gutkovskiy_, Nov 06 2021