Examples of further research unveiling the utility of the MRB constant
The MRB constant early interest
As early as 1999, after I emailed him, technical writer at MathSoft Inc. Dr. Steven Finch shared the following query about the MRB constant;
Marvin Ray Burns asked about
$$ \lim_{N \to \infty} \sum_{n=1}^{2N} (-1)^n n^{\frac{1}{n}} =
\sum_{k=1}^{\infty} \left( (2k)^{\frac{1}{2k}} -
(2k-1)^{\frac{1}{2k-1}} \right) $$
which is slowly convergent (on the order of only
$\ln(k)/k^2 $). No
exact formula for this series is known, although it bears some
resemblance to expressions mentioned with the Glaisher-Kinkelin
constant and with infinite product constants. It may also be rewritten
as
$$ =\sum_{m=1}^{\infty} (-1)^m \left( m^{\frac{1}{m}} - 1 \right) =
1 + \lim_{N \to \infty} \sum_{n=1}^{2N+1} (-1)^n n^{\frac{1}{n}} =
0.1878596424\ldots $$
Using Cohen-Villegas-Zagier's acceleration technique of convergent
alternating series, Burns obtained a high-precision estimate of
this constant. I am not certain if required hypotheses
are met. Can someone help here?
Before his MIT Sloan School of Management's current role as Research Computing Specialist, in 2003 Statistical Computing Scientist/Preceptor at the Harvard University Department of Statistics, Professor Steven Finch was the first to publish about the MRB constant in book form under the auspices of Cambridge Press:
A more difficult evaluation concerns the series
$$ \lim_{N \to \infty} \sum_{n=1}^{2N} (-1)^n n^{\frac{1}{n}} =
\sum_{k=1}^{\infty} \left( (2k)^{\frac{1}{2k}} -
(2k-1)^{\frac{1}{2k-1}} \right) $$
$$ =\sum_{m=1}^{\infty} (-1)^m \left( m^{\frac{1}{m}} - 1 \right) =
1 + \lim_{N \to \infty} \sum_{n=1}^{2N+1} (-1)^n n^{\frac{1}{n}} =
0.1878596424\ldots $$
which is slowly convergent. No exact formulas are known, although the
series bear some resemblance to expressions mentioned in [2.15].
Cesàro summation and Cohen-Villegas-Zagier acceleration are two
techniques available to compute the sum.
The MRB constant integrated analog
On February 22 2009, I asked:
it appears that the absolute value, minus 1/2, of the integral of
(-1)^x*x^(1/x) from 1 to infinity would equal the partial sum of
(-1)^x*x^(1/x) from 1 to where the upper summation is even and growing
without bound. Is anyone interested in improving or disproving
this conjecture?
As found here,
whether in response or for other reasons,
Richard J. Mathar of CERN published the foundational work of its integrated analog.
INTEGRAL OVER exp(ix)x^{1/x} BETWEEN 1 AND INFINITY arXiv:0912.3844v3 [math.CA] 5 Aug 2010
NUMERICAL EVALUATION OF THE OSCILLATORY INTEGRAL OVER
$\exp(i \pi x)x^{1/x}$ BETWEEN 1 AND INFINITY
RICHARD J. MATHAR
Real and imaginary part of the limit
$2N \to \infty$ of the integral
$$ \int_{1}^{2N} \exp(i\pi x) x^{1/x} dx $$
are evaluated to 20 digits with brute force methods after multiple
partial integration, or combining a standard Simpson integration over
the first half wave with series acceleration techniques for the
alternating series co-phased to each of its points. The integrand is
of the logarithmic kind; its branch cut limits the performance of
integration techniques that rely on smooth higher order derivatives.
First, following-up on my inquiries about the efficient computation of the MRB constant digits mentioned in the above paper, Henrik Schachner, --from the Radiation Therapy Center in Weilheim, Germany, who is a physicist with a PhD from the University of Regensburg and currently working in medical physics, now in radiotherapy, previously in radiology had the most instructive remark.
here:

ClearAll["Global`*"]
m = Table[N[(-1)^k (k^(1/k) - 1), 2000], {k, 1, 2000}];
(*partial sums of the series*)
am = Accumulate@m;
shanks[ac_List] :=
Table[(ac[[n + 1]] ac[[n - 1]] - ac[[n]]^2)/(ac[[n + 1]] +
ac[[n - 1]] - 2 ac[[n]]), {n, 2, Length[ac] - 1}]
sac = NestList[shanks, am, 24];
ListLogPlot[Abs[Differences /@ sac], Joined -> True,
GridLines -> Automatic, ImageSize -> Large]

This plot showcases the Shanks transformation that can be applied iteratively, leading to further improvements in MRB constant calculations.
Studying Mathar R. J. has led to many programs and formulas to compute the integrated analog of the MRB constant.
The efficient programs
Wed 29 Jul 2015 11:40:10
From an initial accuracy of only 7 digits,
0.07077603931152880353952802183028200137`19.163032309866352 -
0.68400038943793212918274445999266112671`20.1482024033675 I - \
(NIntegrate[(-1)^t (t^(1/t) - 1), {t, 1, Infinity},
WorkingPrecision -> 20] - 2 I/Pi)
(5.256245460165610^-7 - 5.0557218633576410^-6 I)
we have the first efficient program to compute the integrated analog (MKB) of the MRB constant, which is good for 35,000 digits.
Block[{$MaxExtraPrecision = 200}, prec = 4000; f[x_] = x^(1/x);
ClearAll[a, b, h];
Print[DateString[]];
Print[T0 = SessionTime[]];
If[prec > 35000, d = Ceiling[0.002 prec],
d = Ceiling[0.264086 + 0.00143657 prec]];
h[n_] :=
Sum[StirlingS1[n, k]*
Sum[(-j)^(k - j)*Binomial[k, j], {j, 0, k}], {k, 1, n}];
h[0] = 1;
g = 2 I/Pi - Sum[-I^(n + 1) h[n]/Pi^(n + 1), {n, 1, d}];
sinplus1 :=
NIntegrate[
Simplify[Sin[Pi*x]*D[f[x], {x, d + 1}]], {x, 1, Infinity},
WorkingPrecision -> prec*(105/100),
PrecisionGoal -> prec*(105/100)];
cosplus1 :=
NIntegrate[
Simplify[Cos[Pi*x]*D[f[x], {x, d + 1}]], {x, 1, Infinity},
WorkingPrecision -> prec*(105/100),
PrecisionGoal -> prec*(105/100)];
middle := Print[SessionTime[] - T0, " seconds"];
end := Module[{}, Print[SessionTime[] - T0, " seconds"];
Print[c = Abs[a + b]]; Print[DateString[]]];
If[Mod[d, 4] == 0,
Print[N[a = -Re[g] - (1/Pi)^(d + 1)*sinplus1, prec]];
middle;
Print[N[b = -I (Im[g] - (1/Pi)^(d + 1)*cosplus1), prec]];
end];
If[Mod[d, 4] == 1,
Print[N[a = -Re[g] - (1/Pi)^(d + 1)*cosplus1, prec]];
middle;
Print[N[b = -I (Im[g] + (1/Pi)^(d + 1)*sinplus1), prec]]; end];
If[Mod[d, 4] == 2,
Print[N[a = -Re[g] + (1/Pi)^(d + 1)*sinplus1, prec]];
middle;
Print[N[b = -I (Im[g] + (1/Pi)^(d + 1)*cosplus1), prec]];
end];
If[Mod[d, 4] == 3,
Print[N[a = -Re[g] + (1/Pi)^(d + 1)*cosplus1, prec]];
middle;
Print[N[b = -I (Im[g] - (1/Pi)^(d + 1)*sinplus1), prec]];
end];]
May 2018
I got substantial improvement in calculating the digits of MKB by using V11.3 in May 2018, my new computer (processor Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz, 3601 MHz, 4 Core(s), 8 Logical Processor(s) with 16 GB 2400 MH DDR4 RAM):
Digits Seconds
2000 67.5503022
3000 217.096312
4000 514.48334
5000 1005.936397
10000 8327.18526
20000 71000
They are found in the attached 2018 quad MKB.nb.
They are twice as fast,(or more) as my old records with the same program using Mathematica 10.2 in July 2015 on my old big computer (a six-core Intel(R) Core(TM) i7-3930K CPU @ 3.20 GHz 3.20 GHz with 64 GB of 1066 MHz DDR3 RAM):
digits seconds
2000 256.3853590
3000 794.4361122
4000 1633.5822870
5000 2858.9390025
10000 17678.7446323
20000 121431.1895170
40000 I got error msg
May 2021
After finding the following rapidly converging integral for MKB,
I finally computed 200,000 digits of MKB (0.070776 - 0.684 I...)
Started Saturday, May 15, 2021, 10: 54: 17 AM, and finished at 9:23:50 am EDT | Friday, August 20, 2021, for a total of 8.37539*10^6 seconds or 96 days 22 hours 29 minutes 50 seconds.
The full computation, verification to 100,000 digits, and hyperlinks to various digits are found below at 200k MKB A.nb.
The code was
g[x_] = x^(1/x); u := (t/(1 - t)); Timing[
MKB1 = (-I Quiet[
NIntegrate[(g[(1 + u I)])/(Exp[Pi u] (1 - t)^2), {t, 0, 1},
WorkingPrecision -> 200000, Method -> "DoubleExponential",
MaxRecursion -> 17]] - I/Pi)]
The Wolfram Notebook assistant proved this.
To construct a detailed proof that demonstrates the equality of the two integrals using series expansions, contour integration, and numerical verification, we can proceed with the following steps:
Conclusion
Theoretical analysis using series expansions and contour integration, combined with numerical verification, demonstrates the equality of the two integrals. The contour integral approach ensures that the integrals along the real and imaginary axes are equivalent, up to the added term. This illustrates the equivalency of these two complex integrals.
After finding the above more rapidly converging integral for MKB, In only 80.5 days, 189,330 real digits and 166,700 imaginaries were confirmed to be correct by the following different formula. as Seen at https://www.wolframcloud.com/obj/bmmmburns/Published/2nd%20200k%20MRB.nb
All digits at
https://www.wolframcloud.com/obj/bmmmburns/Published/200K%20confirmed%20MKB.nb (Recommended to open in desktop Mathematica.)
N[(Timing[
FM2200K - (NIntegrate[(Exp[Log[t]/t - Pi t/I]), {t, 1, Infinity I},
WorkingPrecision -> 200000, Method -> "Trapezoidal",
MaxRecursion -> 17] - I/Pi)]), 20]
I've learned more about what MaxRecusion is required for 250,000 digits to be verified from the two different formulas, and they are being computed as I write. It will probably take over 100 days.
Let's try to formalize this derivation.
The MRB constant eta derivations
The continuing development of MRB constant formulas connect the Dirichlet eta to nth roots yielding a proof of the previously proposed concept that the MRB constant connects such ideas together.
Published in his life-time collection, Algorithmic Reflections: Selected Works, professor Richard Crandall of Reed College made the case that the MRB constant is indeed a key fundamental constant
Achieved here
To summarize his thesis.
The MRB constant's eta formula connects various zeta function variants through its use of series and its relationship to other special functions. Let's explore this connection in detail.
The MRB Constant and Its Series Representation
The MRB constant (B as he put it) is defined by a specific series involving alternating sums:

This series converges quickly, making it efficient for high-precision calculations. Here's how this ties together various zeta function variants:
Relationship to Zeta Function Variants
Eta Function: The eta function
η(s)
is a variant of the Riemann zeta function
ζ(s)
and is defined as:
$ \eta(s) = (1 - 2^{1-s}) \zeta(s)$

shown here,

This has led to faster convergence of digits, so in search for a suitable approximation to the MRB constant to answer several questions about patterns in its decimal approximation,


From ScienceDirect:

All the formulas for the MRB constant and its integrated analog are in Results from further research unveiling the utility of the MRB constant