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 A176480 #9 Dec 26 2022 08:56:17 %S A176480 1,1,1,1,2,1,1,4,4,1,1,9,11,9,1,1,21,28,28,21,1,1,49,68,73,68,49,1,1, %T A176480 114,161,178,178,161,114,1,1,265,377,422,434,422,377,265,1,1,616,879, %U A176480 989,1029,1029,989,879,616,1,1,1432,2046,2307,2412,2440,2412,2307,2046 %N A176480 Triangle: let b(n) = 3*b(n - 1) - 2*b(n - 2) + b(n - 3), then T(n,m) = b(n) - b(m) - b(n - m) + 1. %e A176480 {1}, %e A176480 {1, 1}, %e A176480 {1, 2, 1}, %e A176480 {1, 4, 4, 1}, %e A176480 {1, 9, 11, 9, 1}, %e A176480 {1, 21, 28, 28, 21, 1}, %e A176480 {1, 49, 68, 73, 68, 49, 1}, %e A176480 {1, 114, 161, 178, 178, 161, 114, 1}, %e A176480 {1, 265, 377, 422, 434, 422, 377, 265, 1}, %e A176480 {1, 616, 879, 989, 1029, 1029, 989, 879, 616, 1}, %e A176480 {1, 1432, 2046, 2307, 2412, 2440, 2412, 2307, 2046, 1432, 1} %t A176480 b[0] := 0; b[1] := 1; b[2] := 3; %t A176480 b[n_] := b[n] = 3*b[n - 1] - 2*b[n - 2] + b[n - 3]; %t A176480 t[n_, m_] := t[n, m] = b[n] - b[m] - b[n - m] + 1; %t A176480 Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; %t A176480 Flatten[%] %Y A176480 Cf. A095263 %K A176480 nonn,tabl,easy %O A176480 0,5 %A A176480 _Roger L. Bagula_, Apr 18 2010