A348003 Indices k of records of low value of the ratios A348001(k)/A034444(k) between the number of distinct values of the unitary totient function applied to the unitary divisors of k and the number of unitary divisors of k.
1, 2, 546, 2730, 13650, 101010, 199290, 996450, 1919190, 7373730, 28020174, 32626230, 125353410, 140100870, 700504350, 2381714790, 11908573950, 15270994830
Offset: 1
Programs
-
Mathematica
f[p_, e_] := p^e - 1; uphi[1] = 1; uphi[n_] := Times @@ f @@@ FactorInteger[n]; r[n_] := Length @ Union[uphi /@ (d = Select[Divisors[n], CoprimeQ[#, n/#] &])]/Length[d]; rm = 2; seq = {}; Do[r1 = r[n]; If[r1 < rm, rm = r1; AppendTo[seq, n]], {n, 1, 10^5}]; seq
Comments