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 A209693 #6 Mar 30 2012 18:58:15 %S A209693 1,0,2,0,3,3,0,4,9,4,0,5,17,19,5,0,6,27,49,34,6,0,7,39,98,115,55,7,0, %T A209693 8,53,170,284,236,83,8,0,9,69,269,585,706,440,119,9,0,10,87,399,1070, %U A209693 1706,1568,763,164,10,0,11,107,564,1799,3577,4395,3193,1250,219 %N A209693 Triangle of coefficients of polynomials u(n,x) jointly generated with A209694; see the Formula section. %C A209693 Alternating row sums are periodic. %C A209693 For a discussion and guide to related arrays, see A208510. %F A209693 u(n,x)=x*u(n-1,x)+x*v(n-1,x), %F A209693 v(n,x)=u(n-1,x)+(x+1)*v(n-1,x)+1, %F A209693 where u(1,x)=1, v(1,x)=1. %e A209693 First five rows: %e A209693 1 %e A209693 0...2 %e A209693 0...2...4 %e A209693 0...1...8...8 %e A209693 0...1...5...24...16 %e A209693 First three polynomials v(n,x): 1, 2x, 2x + 4x^2. %t A209693 u[1, x_] := 1; v[1, x_] := 1; z = 16; %t A209693 u[n_, x_] := x*u[n - 1, x] + x*v[n - 1, x]; %t A209693 v[n_, x_] := u[n - 1, x] + (x + 1)*v[n - 1, x] + 1; %t A209693 Table[Expand[u[n, x]], {n, 1, z/2}] %t A209693 Table[Expand[v[n, x]], {n, 1, z/2}] %t A209693 cu = Table[CoefficientList[u[n, x], x], {n, 1, z}]; %t A209693 TableForm[cu] %t A209693 Flatten[%] (* A209693 *) %t A209693 Table[Expand[v[n, x]], {n, 1, z}] %t A209693 cv = Table[CoefficientList[v[n, x], x], {n, 1, z}]; %t A209693 TableForm[cv] %t A209693 Flatten[%] (* A209694 *) %Y A209693 Cf. A209694, A208510. %K A209693 nonn,tabl %O A209693 1,3 %A A209693 _Clark Kimberling_, Mar 12 2012