login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

Triangle of coefficients of polynomials u(n,x) jointly generated with A210038; see the Formula section.
3

%I #4 Mar 30 2012 18:58:16

%S 1,3,7,1,15,5,1,31,17,6,1,63,49,24,7,1,127,129,80,32,8,1,255,321,240,

%T 120,41,9,1,511,769,672,400,170,51,10,1,1023,1793,1792,1232,620,231,

%U 62,11,1,2047,4097,4608,3584,2072,912,304,74,12,1,4095,9217

%N Triangle of coefficients of polynomials u(n,x) jointly generated with A210038; see the Formula section.

%C For a discussion and guide to related arrays, see A208510.

%F u(n,x)=u(n-1,x)+v(n-1,x)+1,

%F v(n,x)=u(n-1,x)+(x+1)*v(n-1,x)+1,

%F where u(1,x)=1, v(1,x)=1.

%e First five rows:

%e 1

%e 3

%e 7....1

%e 15...5....1

%e 31...17...6...1

%e First three polynomials u(n,x): 1, 3, 7 + x.

%t u[1, x_] := 1; v[1, x_] := 1; z = 16;

%t u[n_, x_] := u[n - 1, x] + v[n - 1, x] + 1;

%t v[n_, x_] := u[n - 1, x] + (x + 1)*v[n - 1, x] + 1;

%t Table[Expand[u[n, x]], {n, 1, z/2}]

%t Table[Expand[v[n, x]], {n, 1, z/2}]

%t cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];

%t TableForm[cu]

%t Flatten[%] (* A210037 *)

%t Table[Expand[v[n, x]], {n, 1, z}]

%t cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];

%t TableForm[cv]

%t Flatten[%] (* A210038 *)

%Y Cf. A210038, A208510.

%K nonn,tabf

%O 1,2

%A _Clark Kimberling_, Mar 17 2012