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!)
A207623 Triangle of coefficients of polynomials v(n,x) jointly generated with A207622; see the Formula section. 3

%I #9 Mar 31 2023 03:22:59

%S 1,2,2,3,6,4,14,4,5,28,20,6,50,64,8,7,82,164,56,8,126,364,232,16,9,

%T 184,728,736,144,10,258,1344,1968,736,32,11,350,2328,4656,2800,352,12,

%U 462,3828,10032,8800,2144,64,13,596,6028,20064,24112,9536,832,14

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

%C Column n is divisible by 2^(n-1); row n ends with 2^(n-1).

%C Column 2: 2*A004006.

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

%e First five rows:

%e 1

%e 2...2

%e 3...6

%e 4...14...4

%e 5...28...20

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

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

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

%t Table[Factor[u[n, x]], {n, 1, z}]

%t Table[Factor[v[n, x]], {n, 1, z}]

%t cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];

%t TableForm[cu]

%t Flatten[%] (* A207622 *)

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

%Y Cf. A207622.

%K nonn,tabl

%O 1,2

%A _Clark Kimberling_, Feb 20 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 18 21:51 EDT 2024. Contains 371781 sequences. (Running on oeis4.)