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!)
A101270 T(n, k) is the coefficient of z^k in the numerator of the polynomial part of z^n*exp(-n*s), where s = hypergeom([1, 1, 3/2], [2, 5/2], 1/z^2)/(6z^2); related to Chebyshev's quadrature. Triangle read by rows, T(n,k) for 0 <= k <= n. 3

%I #57 Mar 26 2023 12:08:51

%S 1,0,1,-1,0,3,0,-1,0,2,1,0,-30,0,45,0,7,0,-60,0,72,-1,0,21,0,-105,0,

%T 105,0,-149,0,2142,0,-7560,0,6480,-43,0,-2220,0,20790,0,-56700,0,

%U 42525,0,53,0,-2280,0,15120,0,-33600,0,22400,-43,0,561,0,-9900,0,49896,0,-93555,0,56133

%N T(n, k) is the coefficient of z^k in the numerator of the polynomial part of z^n*exp(-n*s), where s = hypergeom([1, 1, 3/2], [2, 5/2], 1/z^2)/(6z^2); related to Chebyshev's quadrature. Triangle read by rows, T(n,k) for 0 <= k <= n.

%C Without the zeros and with the powers of the coefficients in reverse order (in each row), this array is essentially the same as A324123. For Maple programs to generate the rows of this array, see the link and the program section. - _Petros Hadjicostas_, Oct 28 2019

%H Petros Hadjicostas, <a href="/A101270/a101270_1.txt">Alternative Maple program</a>.

%H H. E. Salzer, <a href="https://doi.org/10.1002/sapm1947261191">Tables for facilitating the use of Chebyshev's quadrature formula</a>, Journal of Mathematics and Physics, 26 (1947), 191-194.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/ChebyshevQuadrature.html">Chebyshev Quadrature</a>.

%e T(4,0) = 1, T(4,1)=0, T(4,2) = -30, T(4,3) = 0, T(4,4) = 45 because

%e z^4*exp(-4s) = z^4 - 2*z^2/3 + 1/45 - 32/(2835*z^2) + O(1/z^4) = (45*z^4 - 30*z^2 + 1)/45 - 32/(2835*z^2) + O(1/z^4).

%e Triangle T(n,k) (with rows n >= 0 and columns k >= 0) begins as follows:

%e 1

%e 0, 1;

%e -1, 0, 3;

%e 0, -1, 0, 2;

%e 1, 0, -30, 0, 45;

%e 0, 7, 0, -60, 0, 72;

%e -1, 0, 21, 0, -105, 0, 105;

%e ...

%p gf := n -> exp(n*(arctanh(z)/z + 1/2*log(1-z^2) - 1)):

%p ser := n -> series(gf(n), z, n + 2):

%p g := n -> ilcm(seq(denom(coeff(ser(n), z, k)), k = 0..n)):

%p a := proc(n) local S; S:=ser(n); seq(g(n)*coeff(S, z, n-m), m=0..n) end:

%p seq(a(n), n = 0..10); # _Petros Hadjicostas_, Oct 28 2019

%t row[0] = {1}; row[1] = {0, 1}; row[n_] := row[n] = Select[ Normal[z^n*Exp[-n*HypergeometricPFQ[{1, 1, 3/2}, {2, 5/2}, 1/z^2]/(6 z^2)] + O[z, Infinity]^n], PolynomialQ[#, z]&] // Together // Numerator // CoefficientList[#, z]&;

%t T[n_, k_] := row[n][[k + 1]];

%t Table[T[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Mar 26 2023 *)

%Y T(n, n) = A002680(n).

%Y Cf. A324123 (same without the zeros).

%K sign,tabl

%O 0,6

%A _Emeric Deutsch_, Jan 24 2005

%E T(0,0) = 1 prepended by _Petros Hadjicostas_, Oct 28 2019

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 31 15:05 EDT 2024. Contains 375568 sequences. (Running on oeis4.)