OFFSET
1,2
COMMENTS
This sequence is infinite since there are infinitely many numbers m with an arbitrarily large integer value of (phi(m) * sigma(m))/m. For example, if m = 2 * 3^k, then this value is (3^(k+1)-1)/2. - Amiram Eldar, Dec 05 2018
LINKS
Richard K. Guy, Divisors and desires, Amer. Math. Monthly, 104 (1997), 359-360.
MATHEMATICA
seq = {}; rm = 0; Do[r = EulerPhi[n]*DivisorSigma[1, n]/n; If[IntegerQ[r] && r > rm, rm = r; AppendTo[seq, n]], {n, 1, 5000}]; seq (* Amiram Eldar, Dec 05 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Title improved by Sean A. Irvine, Dec 05 2018
a(1)=1 inserted and more terms added by Amiram Eldar, Dec 05 2018
STATUS
approved