login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A208525 Triangle of coefficients of polynomials v(n,x) jointly generated with A208524; see the Formula section. 3

%I #5 Mar 30 2012 18:58:13

%S 1,2,3,3,7,5,4,12,18,11,5,18,42,49,21,6,25,80,135,116,43,7,33,135,295,

%T 381,279,85,8,42,210,560,966,1050,638,171,9,52,308,966,2086,2996,2724,

%U 1453,341,10,63,432,1554,4032,7182,8688,6921,3240,683,11,75

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

%C Alternating row sums: 1,-1,1,-1,1,-1,1,-1,...

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

%F v(n,x)=2x*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 2...3

%e 3...7....5

%e 4...12...18...11

%e 5...18...42...49...21

%e First five polynomials v(n,x):

%e 1

%e 2 + 3x

%e 3 + 7x + 5x^2

%e 4 + 12x + 18x^2 + 11x^3

%e 5 + 18x + 42x^2 + 49x^3 + 21x^4

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

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

%t v[n_, x_] := 2 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[%] (* A208524 *)

%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[%] (* A208525 *)

%t Table[u[n, x] /. x -> 1, {n, 1, z}] (*A060816*)

%t Table[v[n, x] /. x -> 1, {n, 1, z}] (*|A084244|*)

%t Table[u[n, x] /. x -> -1, {n, 1, z}] (*alt. row sums*)

%t Table[v[n, x] /. x -> -1, {n, 1, z}] (*alt. row sums*)

%Y Cf. A208524.

%K nonn,tabl

%O 1,2

%A _Clark Kimberling_, Feb 29 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)