A348174 Indices k of records of low value in the ratios A348173(k)/k.
1, 2, 546, 2730, 13650, 51870, 101010, 199290, 505050, 881790, 996450, 1919190, 32626230, 140100870, 654443790, 865554690
Offset: 1
Programs
-
Mathematica
f[p_, e_] := p^e - 1; uphi[1] = 1; uphi[n_] := Times @@ f @@@ FactorInteger[n]; r[n_] := Plus @@ DeleteDuplicates[uphi /@ Select[Divisors[n], CoprimeQ[#, n/#] &]]/n; rm = 2; seq = {}; Do[r1 = r[n]; If[r1 < rm, rm = r1; AppendTo[seq, n]], {n, 1, 2*10^5}]; seq
Comments