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 A208336 #15 Jun 26 2023 07:43:07 %S A208336 1,1,1,1,2,2,1,3,5,3,1,4,9,10,5,1,5,14,22,20,8,1,6,20,40,51,38,13,1,7, %T A208336 27,65,105,111,71,21,1,8,35,98,190,256,233,130,34,1,9,44,140,315,511, %U A208336 594,474,235,55,1,10,54,192,490,924,1295,1324,942,420,89,1,11 %N A208336 Triangle of coefficients of polynomials u(n,x) jointly generated with A208337; see the Formula section. %C A208336 coef. of x^(n-1) in u(n,x): A000045(n), Fibonacci numbers %C A208336 coef. of x^(n-1) in v(n,x): A000045(n+1) %C A208336 row sums, u(n,1): A000129 %C A208336 row sums, v(n,1): A001333 %C A208336 alternating row sums, u(n,-1): 1,0,1,0,1,0,1,0,1,0,... %C A208336 alternating row sums, v(n,-1): 1,-1,1,-1,1,-1,1,-1,... %F A208336 u(n,x)=u(n-1,x)+x*v(n-1,x), %F A208336 v(n,x)=(x+1)*u(n-1,x)+x*v(n-1,x), %F A208336 where u(1,x)=1, v(1,x)=1. %F A208336 T(n,k) = A038137(n-1,k). - _Philippe Deléham_, Apr 05 2012 %e A208336 First five rows: %e A208336 1 %e A208336 1...1 %e A208336 1...2...2 %e A208336 1...3...5...3 %e A208336 1...4...9...10...5 %e A208336 First five polynomials u(n,x): %e A208336 1 %e A208336 1 + x %e A208336 1 + 2x + 2x^2 %e A208336 1 + 3x + 5x^2 + 3x^3 %e A208336 1 + 4x + 9x^2 + 10x^3 + 5x^4 %t A208336 u[1, x_] := 1; v[1, x_] := 1; z = 13; %t A208336 u[n_, x_] := u[n - 1, x] + x*v[n - 1, x]; %t A208336 v[n_, x_] := (x + 1)*u[n - 1, x] + x*v[n - 1, x]; %t A208336 Table[Expand[u[n, x]], {n, 1, z/2}] %t A208336 Table[Expand[v[n, x]], {n, 1, z/2}] %t A208336 cu = Table[CoefficientList[u[n, x], x], {n, 1, z}]; %t A208336 TableForm[cu] %t A208336 Flatten[%] (* A208336 *) %t A208336 Table[Expand[v[n, x]], {n, 1, z}] %t A208336 cv = Table[CoefficientList[v[n, x], x], {n, 1, z}]; %t A208336 TableForm[cv] %t A208336 Flatten[%] (* A208337 *) %t A208336 Table[u[n, x] /. x -> 1, {n, 1, z}] (* u row sums *) %t A208336 Table[v[n, x] /. x -> 1, {n, 1, z}] (* v row sums *) %t A208336 Table[u[n, x] /. x -> -1, {n, 1, z}](* u alt. row sums *) %t A208336 Table[v[n, x] /. x -> -1, {n, 1, z}](* v alt. row sums *) %Y A208336 Apart from offsets the same as A038137. %Y A208336 Cf. A208337. %K A208336 nonn,tabl %O A208336 1,5 %A A208336 _Clark Kimberling_, Feb 26 2012