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

%I #4 Mar 30 2012 18:58:16

%S 1,3,6,3,10,14,3,15,40,23,3,21,90,97,32,3,28,175,301,181,41,3,36,308,

%T 770,728,292,50,3,45,504,1722,2346,1452,430,59,3,55,780,3486,6456,

%U 5686,2554,595,68,3,66,1155,6534,15774,18722,11816,4115,787,77,3

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

%C Row sums: powers of 3

%C For a discussion and guide to related arrays, see A208510.

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

%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 3

%e 6....3

%e 10...14...3

%e 15...40...23...3

%e First three polynomials u(n,x): 1, 3, 6 + 3x.

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

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

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

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

%Y Cf. A210194, A208510.

%K nonn,tabf

%O 1,2

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