A359563 Odd numbers that have at least two divisors with the same value of the Euler totient function (A000010).
63, 189, 273, 315, 441, 513, 567, 585, 693, 819, 825, 945, 1071, 1197, 1323, 1365, 1449, 1539, 1575, 1701, 1755, 1827, 1911, 1953, 2079, 2107, 2109, 2205, 2255, 2331, 2457, 2475, 2565, 2583, 2709, 2835, 2925, 2961, 3003, 3069, 3075, 3087, 3213, 3339, 3465, 3549
Offset: 1
Keywords
Examples
63 is a term since it is odd, 7 and 9 are both divisors of 63, and phi(7) = phi(9) = 6.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[1, 3500, 2], !UnsameQ @@ EulerPhi[Divisors[#]] &] Select[Range[1,3601,2],Max[Tally[EulerPhi[Divisors[#]]][[;;,2]]]>1&] (* Harvey P. Dale, Mar 05 2025 *)
-
PARI
is(k) = k>1 && k%2 && numdiv(k) > #Set(apply(x->eulerphi(x), divisors(k)));
Comments