A328857 Numbers with a record number of divisors that have the same value of the Euler totient function (A000010).
1, 2, 12, 120, 240, 2520, 10920, 21840, 32760, 65520, 600600, 900900, 1801800, 3603600, 4455360, 8910720, 17821440, 46060560, 69090840, 92121120, 126977760, 138181680, 245044800, 414545040, 490089600, 507911040, 1015822080, 1266665400, 1523733120, 2533330800
Offset: 1
Keywords
Examples
2 has 2 divisors with the same value of phi: phi(1) = phi(2) = 1. 12 has 3 divisors with the same value of phi: phi(3) = phi(4) = phi(6) = 2.
Programs
-
Mathematica
f[n_] := Max[Tally[EulerPhi /@ Divisors[n]][[;; , 2]]]; fm = 0; s = {}; Do[f1 = f[n]; If[f1 > fm, fm = f1; AppendTo[s, n]], {n, 1, 10^6}]; s
Comments