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 A026745 #12 Jul 22 2019 06:30:17 %S A026745 1,3,7,15,32,66,139,285,599,1227,2577,5277,11075,22671,47543,97287, %T A026745 203860,417006,873175,1785513,3736210,7637604,15972143,32641221, %U A026745 68224004,139389570,291199307,594818781,1242097912,2536656174 %N A026745 a(n) = Sum_{j=0..n} Sum_{i=0..n} T(j,i), T given by A026736. %H A026745 Vaclav Kotesovec, <a href="/A026745/b026745.txt">Table of n, a(n) for n = 0..2000</a> (terms 0..1000 from G. C. Greubel) %F A026745 a(n) ~ c * phi^(3*n/2), where c = 1/2 + 3*phi^2 / (2*sqrt(5)) if n is even, c = 3*phi^(5/2) / (2*sqrt(5)) if n is odd and phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - _Vaclav Kotesovec_, Jul 22 2019 %t A026745 T[n_, k_]:= T[n, k] = If[k==0 || k==n, 1, If[EvenQ[n] && k==(n-2)/2, T[n-1, k-1] + T[n-2, k-1] + T[n-1, k], T[n-1, k-1] + T[n-1, k]]]; %t A026745 b[n_]:= Sum[T[n, j], {j,0,n}]; Table[Sum[b[j], {j,0,n}], {n,0,35}] (* _G. C. Greubel_, Jul 22 2019 *) %o A026745 (Sage) %o A026745 @CachedFunction %o A026745 def T(n, k): %o A026745 if (k==0 or k==n): return 1 %o A026745 elif (mod(n,2)==0 and k==(n-2)/2): return T(n-1, k-1) + T(n-2, k-1) + T(n-1, k) %o A026745 else: return T(n-1, k-1) + T(n-1, k) %o A026745 def b(n): return sum(T(n, j) for j in (0..n)) %o A026745 [sum(b(j) for j in (0..n)) for n in (0..35)] # _G. C. Greubel_, Jul 22 2019 %Y A026745 Cf. A026736. %K A026745 nonn %O A026745 0,2 %A A026745 _Clark Kimberling_