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 A123185 #12 Jul 14 2016 00:18:39 %S A123185 1,-1,1,2,-3,1,-1,3,-3,1,2,-4,4,-3,1,-1,5,-7,5,-3,1,2,-5,9,-10,6,-3,1, %T A123185 -1,7,-12,14,-13,7,-3,1,2,-6,16,-22,20,-16,8,-3,1,-1,9,-18,30,-35,27, %U A123185 -19,9,-3,1,2,-7,25,-40,50,-51,35,-22,10,-3,1 %N A123185 Triangular array from a zero coefficient sum of recursive polynomials: p(k, x) = x*p(k - 1, x) + p(k - 2, x). %C A123185 Except for p(0,x)=1 all sum to zero: Table[Sum[CoefficientList[p[n, x], x][[m]], {m, 1, n + 1}], {n, 0, 12}] {1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} %H A123185 Robert Israel, <a href="/A123185/b123185.txt">Table of n, a(n) for n = 0..10010</a> (rows 0 to 140, flattened) %F A123185 p(k, x) = x*p(k - 1, x) + p(k - 2, x) for k >= 3 with p(0,x) = 1, p(1,x) = x-1 and p(2,x) = x^2-3x+2. (Corrected by _Robert Israel_, Jul 12 2016) %F A123185 G.f.: g(t,x) = (1 - t + (1-2x) t^2)/(1 - t x - t^2). - _Robert Israel_, Jul 12 2016 %F A123185 For n >= 1, T(n,k) = A114525(n,k) + 2*A114525(n-1,k) - 5*A168561(n-1,k), where we take A114525(n-1,n) = A168561(n-1,n) = 0. - _Robert Israel_, Jul 13 2016 %e A123185 1 %e A123185 -1, 1 %e A123185 2, -3, 1 %e A123185 -1, 3, -3, 1 %e A123185 2, -4, 4, -3, 1 %e A123185 -1, 5, -7, 5, -3, 1 %e A123185 2, -5, 9, -10, 6, -3, 1 %p A123185 S:= series((1 - t + (1-2*x)*t^2)/(1 - t*x - t^2), t, 21): %p A123185 R:= [seq(coeff(S,t,n),n=0..19)]: %p A123185 seq(seq(coeff(R[n],x,j),j=0..n-1),n=1..20); # _Robert Israel_, Jul 12 2016 %t A123185 p[0, x] = 1; p[1, x] = x - 1; p[2, x] = x^2 - 3x + 2; p[k_, x_] := p[k, x] = x*p[k - 1, x] + p[k - 2, x] ; w = Table[CoefficientList[p[n, x], x], {n, 0, 10}]; Flatten[w] %Y A123185 Cf. A114525, A168561. %K A123185 tabl,sign %O A123185 0,4 %A A123185 _Roger L. Bagula_, Oct 02 2006 %E A123185 Edited by _Robert Israel_, Jul 13 2016