OFFSET
0,5
COMMENTS
T(n,n) = Fibonacci(n+1) = A000045(n+1).
A202390 is jointly generated with A208340 as an array of coefficients of polynomials v(n,x): initially, u(1,x)=v(1,x)=1; for n>1, u(n,x)=u(n-1,x)+x*v(n-1)x and v(n,x)=(x+1)*u(n-1,x)+(x+1)v(n-1,x). The alternating row sums of A202390, and also A208340, are 0 except for the first one. See the Mathematica section. [From Clark Kimberling, Feb 27 2012]
FORMULA
EXAMPLE
Triangle begins :
1
1, 1
1, 3, 2
1, 6, 8, 3
1, 10, 21, 17, 5
1, 15, 45, 58, 35, 8
1, 21, 85, 154, 144, 68, 13
1, 28, 147, 350, 452, 330, 129, 21
MATHEMATICA
u[1, x_] := 1; v[1, x_] := 1; z = 13;
u[n_, x_] := u[n - 1, x] + x*v[n - 1, x];
v[n_, x_] := (x + 1)*u[n - 1, x] + (x + 1)*v[n - 1, x];
Table[Expand[u[n, x]], {n, 1, z/2}]
Table[Expand[v[n, x]], {n, 1, z/2}]
cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];
TableForm[cu]
Flatten[%] (* A202390 *)
Table[Expand[v[n, x]], {n, 1, z}]
cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];
TableForm[cv]
Flatten[%] (* A208340 *)
Table[u[n, x] /. x -> 1, {n, 1, z}] (*row sums*)
Table[u[n, x] /. x -> -1, {n, 1, z}] (*alt. row sums*)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Philippe Deléham, Dec 18 2011
STATUS
approved