A328859 Indices k of records of low value in the ratios A319696(k)/A000005(k) between the number of distinct values of the Euler totient function applied to the divisors of k and the number of divisors of k.
1, 2, 60, 120, 240, 480, 960, 1920, 3840, 4080, 8160, 16320, 32640, 65280, 130560, 261120, 522240, 1044480, 1485120, 2227680, 2970240, 4455360, 8910720, 17821440, 35642880, 42325920, 63488880, 69090840, 84651840, 126977760, 169303680, 253955520, 507911040, 761866560
Offset: 1
Keywords
Programs
-
Mathematica
r[n_] := Length @ Union[EulerPhi /@ (d = Divisors[n])]/Length[d]; rm = 2; s = {}; Do[r1 = r[n]; If[r1 < rm, rm = r1; AppendTo[s, n]], {n, 1, 10^5}]; s
Comments