cp's OEIS Frontend

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.

A137430 Triangular sequence from coefficients of a cumulative sum of Chebyshev T(x,n) polynomials (A053120): p(x,n)=p(x,n-1)+T(x,n).

This page as a plain text file.
%I A137430 #3 Mar 30 2012 17:34:26
%S A137430 1,1,1,0,1,2,0,-2,2,4,1,-2,-6,4,8,1,3,-6,-16,8,16,0,3,12,-16,-40,16,
%T A137430 32,0,-4,12,40,-40,-96,32,64,1,-4,-20,40,120,-96,-224,64,128,1,5,-20,
%U A137430 -80,120,336,-224,-512,128,256,0,5,30,-80,-280,336,896,-512,-1152,256,512
%N A137430 Triangular sequence from coefficients of a cumulative sum of Chebyshev T(x,n) polynomials (A053120): p(x,n)=p(x,n-1)+T(x,n).
%C A137430 Row sums are: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
%F A137430 p(x,n)=p(x,n-1)+T(x,n); out_n,m=Coefficients(p(x,n)).
%e A137430 {1},
%e A137430 {1, 1},
%e A137430 {0, 1, 2},
%e A137430 {0, -2, 2, 4},
%e A137430 {1, -2, -6, 4, 8},
%e A137430 {1, 3, -6, -16, 8, 6},
%e A137430 {0, 3, 12, -16, -40, 16, 32},
%e A137430 {0, -4, 12, 40, -40, -96, 32, 64},
%e A137430 {1, -4, -20, 40, 120, -96, -224, 64, 128},
%e A137430 {1, 5, -20, -80, 120, 336, -224, -512, 128, 256},
%e A137430 {0, 5, 30, -80, -280, 336,896, -512, -1152, 256, 512}
%t A137430 Clear[P] P[x, -1] = 0; P[x, 0] = 1; P[x_, n_] := P[x, n] = P[x, n - 1] + ChebyshevT[n, x]; Table[P[x, n], {n, 0, 10}]; a = Table[CoefficientList[P[x, n], x], {n, 0, 10}]; Flatten[a]
%Y A137430 Cf. A053120.
%K A137430 tabl,sign
%O A137430 1,6
%A A137430 _Roger L. Bagula_, Apr 27 2008