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

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

%S 1,2,3,3,4,7,6,5,12,17,12,6,18,34,40,24,7,25,58,91,92,48,8,33,90,173,

%T 234,208,96,9,42,131,295,489,584,464,192,10,52,182,467,906,1328,1424,

%U 1024,384,11,63,244,700,1545,2651,3496,3408,2240,768,12,75,318

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

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

%F where u(1,x)=1, v(1,x)=1.

%e First five rows:

%e 1

%e 2

%e 3...3

%e 4...7....6

%e 5...12...17...12

%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_] := x*u[n - 1, x] + 2 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[%] (* A207618 *)

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

%Y Cf. A207619.

%K nonn,tabf

%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 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)