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 A351345 #5 Feb 16 2022 04:15:42 %S A351345 1,1,1,1,1,1,1,3,9,27,81,243,729,2189,6601,20141,63009,205989,718905, %T A351345 2720543,11183601,49321367,228895201,1097860903,5371546897, %U A351345 26598018425,132755261681,667027581401,3376011676481,17249045903945,89270689572497,470069622480667 %N A351345 G.f. A(x) satisfies: A(x) = 1 + x + x^2 + x^3 + x^4 + x^5 + x^6 * A(x/(1 - 2*x)) / (1 - 2*x). %C A351345 Shifts 6 places left under 2nd-order binomial transform. %F A351345 a(0) = ... = a(5) = 1; a(n) = Sum_{k=0..n-6} binomial(n-6,k) * 2^k * a(n-k-6). %t A351345 nmax = 31; A[_] = 0; Do[A[x_] = 1 + x + x^2 + x^3 + x^4 + x^5 + x^6 A[x/(1 - 2 x)]/(1 - 2 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %t A351345 a[n_] := a[n] = If[n < 6, 1, Sum[Binomial[n - 6, k] 2^k a[n - k - 6], {k, 0, n - 6}]]; Table[a[n], {n, 0, 31}] %Y A351345 Cf. A004211, A007472, A010750, A210543, A275936, A351342, A351343, A351344 %K A351345 nonn %O A351345 0,8 %A A351345 _Ilya Gutkovskiy_, Feb 08 2022