login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A207633
Triangle of coefficients of polynomials u(n,x) jointly generated with A207634; see the Formula section.
3
1, 2, 4, 3, 7, 9, 6, 12, 22, 21, 12, 20, 48, 62, 48, 24, 33, 98, 157, 163, 108, 48, 54, 192, 367, 463, 410, 240, 96, 88, 365, 810, 1203, 1281, 1000, 528, 192, 143, 679, 1715, 2919, 3634, 3392, 2384, 1152, 384, 232, 1242, 3518, 6742, 9550, 10379, 8696
OFFSET
1,2
FORMULA
u(n,x)=u(n-1,x)+v(n-1,x),
v(n,x)=(x+1)*u(n-1,x)+2x*v(n-1,x)+1,
where u(1,x)=1, v(1,x)=1.
EXAMPLE
First five rows:
1
2
4....3
7....9....6
12...22...21...12
MATHEMATICA
u[1, x_] := 1; v[1, x_] := 1; z = 16;
u[n_, x_] := u[n - 1, x] + v[n - 1, x]
v[n_, x_] := (x + 1)*u[n - 1, x] + 2 x*v[n - 1, x] + 1
Table[Factor[u[n, x]], {n, 1, z}]
Table[Factor[v[n, x]], {n, 1, z}]
cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];
TableForm[cu]
Flatten[%] (* A207633 *)
Table[Expand[v[n, x]], {n, 1, z}]
cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];
TableForm[cv]
Flatten[%] (* A207634 *)
CROSSREFS
Cf. A207634.
Sequence in context: A246268 A246267 A101267 * A177877 A090568 A329877
KEYWORD
nonn,tabf
AUTHOR
Clark Kimberling, Feb 24 2012
STATUS
approved