cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A207628 Triangle of coefficients of polynomials v(n,x) jointly generated with A207627; see the Formula section.

This page as a plain text file.
%I A207628 #23 Jun 23 2018 02:33:08
%S A207628 1,1,4,1,6,8,1,8,20,16,1,10,36,56,32,1,12,56,128,144,64,1,14,80,240,
%T A207628 400,352,128,1,16,108,400,880,1152,832,256,1,18,140,616,1680,2912,
%U A207628 3136,1920,512,1,20,176,896,2912,6272,8960,8192,4352,1024,1,22,216
%N A207628 Triangle of coefficients of polynomials v(n,x) jointly generated with A207627; see the Formula section.
%C A207628 Column n is divisible by 2^(n-1); row n ends with 2^(n-1) for n > 2.
%C A207628 Also triangle T(n,k), k=0..n, read by rows, given by (1, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (4, -2, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938. - _Philippe Deléham_, Feb 25 2012
%C A207628 Also seems to be square array of unsigned coefficients of 3U-2T (with T and U the two sequences of Chebyshev polynomials). - _Thomas Baruchel_, Jun 03 2018
%F A207628 u(n,x) = u(n-1,x) + v(n-1,x),
%F A207628 v(n,x) = 2x*u(n-1,x) + 2x*v(n-1,x) + 1,
%F A207628 where u(1,x)=1, v(1,x)=1.
%F A207628 The polynomials v(n,x) seem to be v(n)=sum(k=0,n-1, (-1)^(k+n+1) * x^k * polcoeff( 3*polchebyshev(2*n-k-2,2)-2*polchebyshev(2*n-k-2,1), k)) by using the PARI syntax. - _Thomas Baruchel_, Jun 05 2018
%F A207628 As triangle T(n,k), k=0..n:
%F A207628 G.f.: (1+2*y*x)/(1-(1+2*y)*x). - _Philippe Deléham_, Feb 25 2012
%F A207628 T(n,k) = 2*T(n-1,k-1) + T(n-1,k) with T(0,0) = T(1,0) = 1, T(1,1) = 4. - _Philippe Deléham_, Feb 25 2012
%F A207628 As triangle T(n,k), k=0..n, it is given by T(n,k) = A029635(n,k)*2^k with T(0,0) = 1. - _Philippe Deléham_, Feb 25 2012
%e A207628 First five rows:
%e A207628   1;
%e A207628   1,  4;
%e A207628   1,  6,  8;
%e A207628   1,  8, 20, 16;
%e A207628   1, 10, 36, 56, 32;
%t A207628 u[1, x_] := 1; v[1, x_] := 1; z = 16;
%t A207628 u[n_, x_] := u[n - 1, x] + v[n - 1, x]
%t A207628 v[n_, x_] := 2 x*u[n - 1, x] + 2 x*v[n - 1, x] + 1
%t A207628 Table[Factor[u[n, x]], {n, 1, z}]
%t A207628 Table[Factor[v[n, x]], {n, 1, z}]
%t A207628 cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];
%t A207628 TableForm[cu]
%t A207628 Flatten[%]    (* A207627 *)
%t A207628 Table[Expand[v[n, x]], {n, 1, z}]
%t A207628 cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];
%t A207628 TableForm[cv]
%t A207628 Flatten[%]    (* A207628 *)
%Y A207628 Cf. A207627.
%K A207628 nonn,tabl
%O A207628 1,3
%A A207628 _Clark Kimberling_, Feb 21 2012