OFFSET
1,1
COMMENTS
Numbers k such that abs(mu(phi(k))) = 1 and abs(mu(k)) = 0.
Contains all the squares p^2 of primes p such that p-1 is squarefree (A039787). - Amiram Eldar, Mar 18 2025
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..5000
EXAMPLE
a(27) = 13778 = 2*83*83 is divisible by a square, but phi(13778) = 6806 = 2*41*83 is squarefree.
MATHEMATICA
Select[Range[70000], Abs[ MoebiusMu[ EulerPhi[ # ] ] ] == 1 && Abs[ MoebiusMu[ # ] ] == 0 &]
PROG
(PARI) isok(k)=!issquarefree(k) && issquarefree(eulerphi(k)) \\ Donovan Johnson, Jun 20 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved
