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!)
A246843 Decimal expansion of C, a constant associated with the estimation of the maximum of |zeta(1+i*t)|. 2
0, 8, 9, 3, 2, 6, 5, 2, 2, 3, 4, 3, 5, 5, 1 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
1 - log(2) + integral_{0..2} log(BesselI(0, t))/t^2 dt + integral_{2..infinity} (log(BesselI(0, t)) - t)/t^2 dt.
EXAMPLE
-0.089326522343551...
MATHEMATICA
digits = 15; precision = 200; u0 = 10^8; du = 10^8; tail[u_] := -(1 + Log[2*Pi*u])/(2*u); Clear[f]; f[u_] := f[u] = 1 - Log[2] + NIntegrate[Log[BesselI[0, t]]/t^2, {t, 0, 2} , WorkingPrecision -> precision] + NIntegrate[(Log[BesselI[0, t]] - t)/t^2, {t, 2, u}, WorkingPrecision -> precision, MaxRecursion -> 20 ] + tail[u]; f[u0]; f[u = u0 + du]; While[RealDigits[f[u], 10, digits + 4] != RealDigits[f[u - du], 10, digits + 4], Print["u = ", u, " ", f[u]]; u = u + du]; Join[{0}, RealDigits[f[u], 10, digits] // First]
CROSSREFS
Sequence in context: A339800 A197392 A021922 * A257438 A197826 A197755
KEYWORD
nonn,cons,more
AUTHOR
EXTENSIONS
Typo in the formula corrected by Vaclav Kotesovec, Sep 17 2014
STATUS
approved

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 September 13 11:30 EDT 2024. Contains 375905 sequences. (Running on oeis4.)