OFFSET
1,1
EXAMPLE
The running sums of mu(k)/k are 1, 1/2, 1/6, 1/6, -(1/30), 2/15, -(1/105), -(1/105), so the 4th, 5th and 6th terms precede a sign change.
MATHEMATICA
cum=0; res={}; Do[cum += MoebiusMu[k]/k; If[Sign[cum+MoebiusMu[k+1]/(k+1)] =!= Sign[cum], AppendTo[res, k]], {k, 1, 1000}]; res
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Wouter Meeussen, May 24 2003
STATUS
approved