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 A351187 #6 Feb 08 2022 05:16:45 %S A351187 1,1,1,-5,25,-131,793,-6137,60049,-670919,7930321,-96775853, %T A351187 1225237609,-16333089227,232150489129,-3531321746465,57178717416097, %U A351187 -975918663642767,17400776511175201,-322309002081819221,6188520430773389881,-123166171374344928275,2542231599282355411897 %N A351187 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 + 6*x)) / (1 + 6*x). %C A351187 Shifts 2 places left under 6th-order inverse binomial transform. %F A351187 a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * (-6)^k * a(n-k-2). %t A351187 nmax = 22; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x/(1 + 6 x)]/(1 + 6 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %t A351187 a[0] = a[1] = 1; a[n_] := a[n] = Sum[Binomial[n - 2, k] (-6)^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 22}] %Y A351187 Cf. A010739, A051139, A318181, A350456, A351057, A351184, A351185, A351186. %K A351187 sign %O A351187 0,4 %A A351187 _Ilya Gutkovskiy_, Feb 04 2022