cp's OEIS Frontend

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.

A207632 Triangle of coefficients of polynomials v(n,x) jointly generated with A207631; see Formula section.

This page as a plain text file.
%I A207632 #6 Mar 30 2012 18:58:13
%S A207632 1,2,2,3,4,2,5,9,6,2,8,18,17,8,2,13,35,41,27,10,2,21,66,93,76,39,12,2,
%T A207632 34,122,200,196,125,53,14,2,55,222,415,472,360,190,69,16,2,89,399,837,
%U A207632 1083,957,603,273,87,18,2,144,710,1651,2392,2400,1750,945,376
%N A207632 Triangle of coefficients of polynomials v(n,x) jointly generated with A207631; see Formula section.
%C A207632 Column 1: Fibonacci numbers, A000045.
%F A207632 u(n,x)=u(n-1,x)+v(n-1,x),
%F A207632 v(n,x)=(x+1)*u(n-1,x)+x*v(n-1,x)+1,
%F A207632 where u(1,x)=1, v(1,x)=1.
%e A207632 First five rows:
%e A207632 1
%e A207632 2...2
%e A207632 3...4....2
%e A207632 5...9....6....2
%e A207632 8...18...17...8...2
%t A207632 u[1, x_] := 1; v[1, x_] := 1; z = 16;
%t A207632 u[n_, x_] := u[n - 1, x] + v[n - 1, x]
%t A207632 v[n_, x_] := (x + 1)*u[n - 1, x] + x*v[n - 1, x] + 1
%t A207632 Table[Factor[u[n, x]], {n, 1, z}]
%t A207632 Table[Factor[v[n, x]], {n, 1, z}]
%t A207632 cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];
%t A207632 TableForm[cu]
%t A207632 Flatten[%]  (* A207631 *)
%t A207632 Table[Expand[v[n, x]], {n, 1, z}]
%t A207632 cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];
%t A207632 TableForm[cv]
%t A207632 Flatten[%]  (* A207632 *)
%Y A207632 Cf. A207631.
%K A207632 nonn,tabl
%O A207632 1,2
%A A207632 _Clark Kimberling_, Feb 23 2012