OFFSET
0,3
REFERENCES
C. A. Pickover, The Math Book, Sterling, NY, 2009; see p. 184.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Petros Hadjicostas, Table of n, a(n) for n = 0..30
H. E. Salzer, Tables for facilitating the use of Chebyshev's quadrature formula, Journal of Mathematics and Physics, 26 (1947), 191-194.
Eric Weisstein's World of Mathematics, Chebyshev Quadrature.
MAPLE
s := proc(z) 1/6*z^2*hypergeom([1, 1, 3/2], [2, 5/2], z^2); end proc;
f:= proc(n) local v, m; v := 1;
for m to n do
v := lcm(v, denom(coeftayl(exp(-n*s(z)), z = 0, m))); end do; v;
end proc;
seq(f(n), n = 0 .. 26); # Petros Hadjicostas, Oct 28 2019
MATHEMATICA
gf[n_, z_] := Exp[n (ArcTanh[z]/z + Log[1 - z^2]/2 - 1)];
ser[n_] := CoefficientList[Series[gf[n, z], {z, 0, n}], z];
Table[LCM @@ Denominator[ser[n]], {n, 0, 30}] (* Peter Luschny, Oct 28 2019 *)
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
EXTENSIONS
More terms from Pab Ter (pabrlos(AT)yahoo.com), May 11 2004
a(22)-a(30) from Petros Hadjicostas, Oct 28 2019
a(0) = 1 prepended by Petros Hadjicostas, Oct 28 2019
STATUS
approved