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 A351189 #5 Feb 08 2022 05:19:22 %S A351189 0,0,1,0,0,1,-3,6,-9,6,27,-169,645,-1995,5122,-9570,1242,109739, %T A351189 -756648,3733128,-15527337,55626585,-161247102,260402511,1028417064, %U A351189 -14243992155,102551438561,-595149283191,3010031905815,-13336771020834,48891499316016,-111677138548476 %N A351189 G.f. A(x) satisfies: A(x) = x^2 + x^3 * A(x/(1 + x)) / (1 + x). %C A351189 Shifts 3 places left under inverse binomial transform. %F A351189 a(0) = a(1) = 0, a(2) = 1; a(n) = Sum_{k=0..n-3} (-1)^k * binomial(n-3,k) * a(n-k-3). %t A351189 nmax = 31; A[_] = 0; Do[A[x_] = x^2 + x^3 A[x/(1 + x)]/(1 + x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %t A351189 a[0] = a[1] = 0; a[2] = 1; a[n_] := a[n] = Sum[(-1)^k Binomial[n - 3, k] a[n - k - 3], {k, 0, n - 3}]; Table[a[n], {n, 0, 31}] %Y A351189 Cf. A000998, A010741, A351188. %K A351189 sign %O A351189 0,7 %A A351189 _Ilya Gutkovskiy_, Feb 04 2022