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!)
A180870 D(n,x) is the Dirichlet kernel = sin((n+1/2)x)/sin(x/2). This triangle gives in row n, n >= 0, the coefficients of descending powers of x of the polynomial D(n, arccos(x)). 5

%I #72 Mar 17 2022 01:18:48

%S 1,2,1,4,2,-1,8,4,-4,-1,16,8,-12,-4,1,32,16,-32,-12,6,1,64,32,-80,-32,

%T 24,6,-1,128,64,-192,-80,80,24,-8,-1,256,128,-448,-192,240,80,-40,-8,

%U 1,512,256,-1024,-448,672,240,-160,-40,10,1

%N D(n,x) is the Dirichlet kernel = sin((n+1/2)x)/sin(x/2). This triangle gives in row n, n >= 0, the coefficients of descending powers of x of the polynomial D(n, arccos(x)).

%C D(n,arccos(x)) = U(n,x) + U(n-1,x) where U(n,x) are the Chebyshev polynomials of the second kind. These polynomials arise naturally in the investigation of the integer triples (p, q, (pq+1)/(p+q)).

%C Chebyshev polynomials of the fourth kind, usually denoted by W(n,x) (see, for example, Mason and Handscomb, Chapter 1, Definition 1.3). See A228565 for Chebyshev polynomials of the third kind. Cf. A157751. - _Peter Bala_, Jan 17 2014

%D J. C. Mason and D. C. Handscomb, Chebyshev polynomials, Chapman and Hall/CRC 2002.

%H Paul Barry, <a href="https://arxiv.org/abs/1606.05077">On the Group of Almost-Riordan Arrays</a>, arXiv preprint arXiv:1606.05077 [math.CO], 2016.

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Dirichlet_kernel">Dirichlet kernel</a>.

%F From _Peter Bala_, Jan 17 2014: (Start)

%F O.g.f. (1 + t)/(1 - 2*x*t + t^2) = 1 + (2*x + 1)*t + (4*x^2 + 2*x - 1)*t^2 + ....

%F Recurrence equation: W(0,x) = 1, W(1,x) = 2*x + 1 and W(n,x) = 2*x*W(n-1,x) - W(n-2,x) for n >= 2.

%F In terms of U(n,x), the Chebyshev polynomials of the second kind, we have W(n,x) = U(2*n,u) with u = sqrt((1 + x)/2). Also binomial(2*n,n)*W(n,x) = 2^(2*n)*Jacobi_P(n,1/2,-1/2,x). (End)

%F Row sums: 2*n+1. - _Michel Marcus_, Jul 16 2014

%F T(n,m) = [x^(n-m)](U(n, x) + U(n-1, x)) = [x^(n-m)] S(2*n, sqrt(2*(1+x))), n >= m >= 0, with U(n, x) = S(n, 2*x). The coefficient triangle of the Chebyshev S-polynomials is given in A049310. See the _Peter Bala_ comments above. - _Wolfdieter Lang_, Jul 26 2014

%F From _Wolfdieter Lang_, Jul 30 2014: (Start)

%F O.g.f. for the row polynomials R(n,x) = Sum_{m=0..n} T(n,m)*x^m, obtained from the one given by _Peter Bala_ above by row reversion: (1 + x*t)/(1 - 2*t + (x*t)^2).

%F In analogy to A157751 one can derive a recurrence for the row polynomials R(n, x) = x^n*Dir(n,1/x) with Dir(n,x) = U(n,x) + U(n-1,x) using also negative arguments but only one recursive step: R(n,x) = (1+x)*R(n-1,-x) + R(n-1,x), n >= 1, R(0,x) = 1 (R(-1,x) = -1/x). Proof: derive the o.g.f. and compare it with the known one.

%F This entails the triangle recurrence T(n,m) = (1 + (-1)^m)* T(n-1,m) - (-1)^m*T(n-1,m-1), for n >= m >= 1 with T(n,m) = 0 if n < m and T(n,0) = 2^n.

%F (End)

%e The triangle T(n,m) begins:

%e n\m 0 1 2 3 4 5 6 7 8 9 10 ...

%e 0: 1

%e 1: 2 1

%e 2: 4 2 -1

%e 3: 8 4 -4 -1

%e 4: 16 8 -12 -4 1

%e 5: 32 16 -32 -12 6 1

%e 6: 64 32 -80 -32 24 6 -1

%e 7: 128 64 -192 -80 80 24 -8 -1

%e 8: 256 128 -448 -192 240 80 -40 -8 1

%e 9: 512 256 -1024 -448 672 240 -160 -40 10 1

%e 10: 1024 512 -2304 -1024 1792 672 -560 -160 60 10 -1

%e ... reformatted - _Wolfdieter Lang_, Jul 26 2014

%e Recurrence: T(4,2) = (1 + 1)*T(3,2) - T(3,1) = 2*(-4) - 4 = -12. T(4,3) = 0*T(3,3) - (-1)*T(3,2) = T(3,2) = -4. - _Wolfdieter Lang_, Jul 30 2014

%o (PARI) row(n) = {if (n==0, return([1])); f = 2*x+1; for (k = 2, n, for (i = 1, (k-1)\2 + 1, f += (-1)^(i+1)*(binomial(k-i, i-1)*(2*x)^(k-2*i+2) - 2*binomial(k-1-i, i-1)*(2*x)^(k-2*i)););); Vec(f);} \\ _Michel Marcus_, Jul 18 2014

%Y Cf. A008312, A028297, A157751, A228565, A049310, A244419 (row reversed triangle).

%K easy,sign,tabl

%O 0,2

%A _Jonny Griffiths_, Sep 21 2010

%E Missing term in sequence corrected by _Paul Curtz_, Dec 31 2011

%E Edited (name reformulated, Wikipedia link added) by _Wolfdieter Lang_, Jul 26 2014

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 August 10 05:27 EDT 2024. Contains 375044 sequences. (Running on oeis4.)