The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A062982 Numbers n such that Mertens's function of n (A002321) is divisible by phi(n). 7
1, 2, 39, 40, 58, 65, 93, 101, 145, 149, 150, 159, 160, 163, 164, 166, 214, 231, 232, 235, 236, 238, 254, 329, 331, 332, 333, 353, 355, 356, 358, 362, 363, 364, 366, 393, 401, 403, 404, 405, 407, 408, 413, 414, 419, 420, 422, 423, 424, 425, 427, 428, 537 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Except for the initial term, this sequence is the same as A028442, the n for which Mertens's function M(n) is zero. Because phi(n) >= sqrt(n) and M(n) < sqrt(n) for all known n, phi(n) does not divide M(n), except possibility for some extremely large n. Research project: find the least n > 1 with M(n) not zero and phi(n) divides M(n). - T. D. Noe, Jul 28 2005
LINKS
Eric Weisstein's World of Mathematics, Mertens Conjecture
MATHEMATICA
Select[Range[500], Mod[Plus @@ MoebiusMu[Range[#]], EulerPhi[#]] == 0 &] (* Carl Najafi, Aug 17 2011 *)
PROG
(PARI) M(n)=sum(k=1, n, moebius(k)); j=[]; for(n=1, 1500, if(Mod(M(n), eulerphi(n))==0, j=concat(j, n))); j
(PARI) { n=m=0; for (k=1, 10^9, m+=moebius(k); if (m%eulerphi(k)==0, write("b062982.txt", n++, " ", k); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 15 2009
CROSSREFS
Cf. A002321.
Sequence in context: A055689 A345316 A028442 * A042801 A078733 A201360
KEYWORD
nonn
AUTHOR
Jason Earls, Jul 25 2001
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 May 23 12:41 EDT 2024. Contains 372763 sequences. (Running on oeis4.)