OFFSET
1,2
COMMENTS
a(k) is the number of x in interval[1,10^k] such that M(x) = 0, for k >= 1, and is equal to {1,6,92,...}. It is well known that the function M oscillates infinitely around 0 when x tends towards infinity. M(x) = Sum_{n < = x} moebius(n).
LINKS
E. Grosswald, Oscillation theorems of arithmetical functions, Trans. AMS 126 (1967), 1-28.
Greg Hurst, Computations of the Mertens function and improved bounds on the Mertens conjecture, Mathematics of Computation, Volume 87, No. 310 (2018), pp. 1013-1028, arXiv:1610.08551 [math.NT].
Eric Weisstein's World of Mathematics, Mertens Function
Eric Weisstein's World of Mathematics, Moebius Function
Wikipedia, Mertens function
EXAMPLE
For k = [1,..,10], a(1) = 1.
For x = [1,..,100], a(2) = 6.
For x = [1, ..., 1000], a(3) = 92.
MATHEMATICA
s={}; sum=0; count=0; Do[ Do[ sum+=MoebiusMu[n]; If[sum==0, count++], {n, 10^k, 10^(k+1)-1}]; AppendTo[s, count], {k, 0, 5}]; s (* Amiram Eldar, Jun 19 2018 *)
PROG
(PARI) c = 0; s = 0; for(k = 0, 5, for(n = 10^k, 10^(k+1)-1, s+=moebius(n); if(s==0, c++)); print(c)) \\ Amiram Eldar, Jun 19 2018
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Michel Lagneau, Dec 31 2009
EXTENSIONS
a(10)-a(16) added by Amiram Eldar, Jun 19 2018 from the paper by Hurst
STATUS
approved