A373435 Iterate the function x <- phi(sigma(x)). The sequence lists the smaller member of cycles of length 2.
4, 48, 72, 432, 1728, 10368, 184320, 1658880, 6220800, 10222080, 12856320000
Offset: 1
Examples
phi(sigma(4)) = 6 and phi(sigma(6)) = 4, so 4 (the smallest term) is in the sequence.
Crossrefs
Programs
-
Mathematica
Select[Range[10^6], # == EulerPhi[DivisorSigma[1,EulerPhi[DivisorSigma[1,#]]]] && # < EulerPhi[DivisorSigma[1,#]]&] (* Stefano Spezia, Jun 07 2024 *)
-
PARI
isok(x) = my(y = eulerphi(sigma(x))); if (y > x, x == eulerphi(sigma(y))); \\ Michel Marcus, Jun 06 2024
Comments