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.

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

This page as a plain text file.
%I A210747 #8 Mar 30 2012 18:58:17
%S A210747 1,2,3,4,9,8,7,24,33,21,12,54,109,111,55,20,114,297,435,355,144,33,
%T A210747 228,736,1383,1606,1098,377,54,441,1697,3912,5813,5625,3316,987,88,
%U A210747 831,3723,10158,18419,22779,18962,9837,2584,143,1536,7859,24798
%N A210747 Triangle of coefficients of polynomials u(n,x) jointly generated with A210748; see the Formula section.
%C A210747 Row n starts with -1+F(n+2) and ends with F(2n), where F=A000045 (Fibonacci numbers).
%C A210747 Row sums: A002450
%C A210747 Alternating row sums:  A077925
%C A210747 For a discussion and guide to related arrays, see A208510.
%F A210747 u(n,x)=2x*u(n-1,x)+(x+1)*v(n-1,x)+1,
%F A210747 v(n,x)=(x+1)*u(n-1,x)+(x+1)*v(n-1,x)+1,
%F A210747 where u(1,x)=1, v(1,x)=1.
%e A210747 First five rows:
%e A210747 1
%e A210747 2....3
%e A210747 4....9....8
%e A210747 7....24...33....21
%e A210747 12...54...109...111...55
%e A210747 First three polynomials u(n,x): 1, 2+ 3x, 4 + 9x + 8x^2.
%t A210747 u[1, x_] := 1; v[1, x_] := 1; z = 16;
%t A210747 u[n_, x_] := 2 x*u[n - 1, x] + (x + 1)*v[n - 1, x] + 1;
%t A210747 v[n_, x_] := (x + 1)*u[n - 1, x] + (x + 1)*v[n - 1, x] + 1;
%t A210747 Table[Expand[u[n, x]], {n, 1, z/2}]
%t A210747 Table[Expand[v[n, x]], {n, 1, z/2}]
%t A210747 cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];
%t A210747 TableForm[cu]
%t A210747 Flatten[%]    (* A210747 *)
%t A210747 Table[Expand[v[n, x]], {n, 1, z}]
%t A210747 cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];
%t A210747 TableForm[cv]
%t A210747 Flatten[%]    (* A210748 *)
%t A210747 Table[u[n, x] /. x -> 1, {n, 1, z}]  (* A002450 *)
%t A210747 Table[v[n, x] /. x -> 1, {n, 1, z}]  (* A002450 *)
%t A210747 Table[u[n, x] /. x -> -1, {n, 1, z}] (* A077925 *)
%t A210747 Table[v[n, x] /. x -> -1, {n, 1, z}] (* A000012 *)
%Y A210747 Cf. A208510.
%K A210747 nonn,tabl
%O A210747 1,2
%A A210747 _Clark Kimberling_, Mar 25 2012