A049195 Numbers k such that the Euler totient function phi(k) is divisible by a square.
5, 8, 10, 12, 13, 15, 16, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 84, 85, 87, 88, 89, 90, 91, 92, 93, 95
Offset: 1
Keywords
Examples
72 and 73 belong because neither phi(72) = 24 nor phi(73) = 72 are squarefree.
Links
- Enrique Pérez Herrero, Table of n, a(n) for n = 1..2500
Programs
-
Mathematica
Select[Range[100], MoebiusMu[EulerPhi[#]] == 0 &] Select[Range[100],!SquareFreeQ[EulerPhi[#]]&] (* Harvey P. Dale, Apr 30 2018 *)
Comments