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

%I #19 Jan 24 2020 03:27:10

%S 1,0,4,0,2,10,0,2,6,28,0,2,6,24,76,0,2,6,28,80,208,0,2,6,32,100,264,

%T 568,0,2,6,36,120,360,840,1552,0,2,6,40,140,464,1232,2624,4240,0,2,6,

%U 44,160,576,1680,4128,8064,11584,0,2,6,48,180,696,2184,5952

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

%C As triangle T(n,k) with 0 <= k <= n, it is (0, 1/2, 1/2, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (4, -3/2, -1/2, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938. - _Philippe Deléham_, Feb 28 2012

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

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

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

%F From _Philippe Deléham_, Feb 28 2012: (Start)

%F As triangle with 0 <= k <= n:

%F T(n,k) = T(n-1,k) + 2*T(n-1,k-1) - 2*T(n-2,k-1) + 2*T(n-2,k-2) with T(0,0) = 1, T(1,0) = 0, T(1,1) = 4 and T(n,k) = 0 if k < 0 or if k > n.

%F G.f.: (1-x+2*y*x)/(1-x-2*y*x+2*y*x^2-2*y^2*x^2).

%F T(n,n) = A026150(n+1).

%F Sum_{k=0..n} T(n,k) = A003946(n). (End)

%e First five rows:

%e 1;

%e 0, 4;

%e 0, 2, 10;

%e 0, 2, 6, 28;

%e 0, 2, 6, 24, 76;

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

%e 1

%e 4x

%e 2x + 10x^2

%e 2x + 6x^2 + 28x^3

%e 2x + 6x^2 + 24x^3 + 76x^4.

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

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

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

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

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

%Y Cf. A003946, A026150, A208332.

%K nonn,tabl

%O 1,3

%A _Clark Kimberling_, Feb 26 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 24 12:22 EDT 2024. Contains 371937 sequences. (Running on oeis4.)