OFFSET
0,4
LINKS
Chai Wah Wu and Amiram Eldar, Table of n, a(n) for n = 0..75 (terms 0..73 from Hurst's paper added by Chai Wah Wu, terms 74..75 from Helfgott and Thompson's paper added by Amiram Eldar)
Harald A. Helfgott and Lola Thompson, Summing mu(n): a faster elementary algorithm, arXiv:2101.08773 [math.NT], 2021.
Greg Hurst, Computations of the Mertens function and improved bounds on the Mertens conjecture, Mathematics of Computation, Vol. 87, No. 310 (2018), pp. 1013-1028; arXiv preprint, arXiv:1610.08551 [math.NT], 2016-2017.
MATHEMATICA
s = 0; i = 1; Do[ While[i <= 2^n, s = s + MoebiusMu[i]; i++ ]; Print[s], {n, 0, 50}]
PROG
(PARI) a(n) = sum(k=1, 2^n, moebius(k)) \\ Indranil Ghosh, Mar 15 2017
CROSSREFS
KEYWORD
sign
AUTHOR
Robert G. Wilson v, May 15 2003
EXTENSIONS
a(31)-a(46) from Hurst's paper (copied by Charles R Greathouse IV, Oct 15 2018)
STATUS
approved