OFFSET
1,3
COMMENTS
Integral(sin(x)/x dx) = x - x^3/(3*3!) + x^5/(5*5!) - x^7/(7*7!) + ... . - Harry J. Smith, Apr 28 2009
REFERENCES
E. J. Borowski and J. M. Borwein, Dictionary of Mathematics, 3rd printing, Harper Collins, 1991, Gibbs phenomenon.
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 4.1 Gibbs-Wilbraham Constant, p. 249.
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
Eric Weisstein's World of Mathematics, Wilbraham-Gibbs Constant
FORMULA
EXAMPLE
1.17897974447216727..., the constant in Gibbs phenomenon.
MATHEMATICA
RealDigits[ N[ (2/Pi)*SinIntegral[Pi], 105]][[1]] (* Jean-François Alcover, Nov 07 2012 *)
PROG
(PARI) { default(realprecision, 20080); y=0; x=Pi; m=x; x2=x*x; n=1; nf=1; s=1; while (x!=y, y=x; n++; nf*=n; n++; nf*=n; m*=x2; s=-s; x+=s*m/(n*nf)); x*=2/Pi; for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b036793.txt", n, " ", d)); } \\ Harry J. Smith, Apr 28 2009
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved