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 A140876 #5 Sep 12 2013 15:52:23 %S A140876 2,0,6,-2,2,16,0,-10,10,40,2,-2,-36,36,96,0,14,-14,-112,112,224,-2,2, %T A140876 64,-64,-320,320,512,0,-18,18,240,-240,-864,864,1152,2,-2,-100,100, %U A140876 800,-800,-2240,2240,2560,0,22,-22,-440,440,2464,-2464,-5632,5632,5632,-2,2,144,-144,-1680,1680,7168,-7168,-13824,13824 %N A140876 Triangle T(n,k) = A053120(n+2,k)-2*A053120(n+1,k)+A053120(n,k) read by rows, 0<=k<n. %C A140876 Second differences downwards columns of the Chebyshev triangle A053120. %C A140876 Row sums are 2, 6, 16, 40, 96, 224, 512, 1152, 2560, 5632, 12288,..., A057711. %e A140876 2; %e A140876 0, 6; %e A140876 -2, 2, 16; %e A140876 0, -10, 10, 40; %e A140876 2, -2, -36, 36, 96; %e A140876 0, 14, -14, -112, 112, 224; %e A140876 -2, 2, 64, -64, -320, 320, 512; %e A140876 0, -18, 18, 240, -240, -864, 864, 1152; %e A140876 2, -2, -100, 100, 800, -800, -2240, 2240, 2560; %e A140876 0, 22, -22, -440, 440, 2464, -2464, -5632, 5632, 5632; %e A140876 -2, 2, 144, -144, -1680, 1680, 7168, -7168, -13824, 13824, 12288; %t A140876 Clear[T, D2, x, n, m] T[n_, m_] := CoefficientList[ChebyshevT[n + 1, x], x][[m + 1]]; D2[n_, m_] := T[n + 2, m] - 2*T[n + 1, m] + T[n, m]; a = Table[Flatten[Table[D2[n, m], {m, 0, n}]], {n, 0, 10}]; Flatten[a] %K A140876 tabl,sign %O A140876 1,1 %A A140876 _Roger L. Bagula_ and _Gary W. Adamson_, Jul 21 2008