A067384 Numbers n such that sigma(phi(n))/sigma(n) = 4.
121679, 1043909, 2350171, 2918263, 3396103, 3566807, 3688067, 4019467, 4562827, 5963407, 7300697, 7485979, 7853933, 8103301, 8364151, 9237779, 9514213, 9638527, 10531123, 11094619, 11384447, 12721937, 13576267
Offset: 1
Keywords
Links
- Donovan Johnson, Table of n, a(n) for n = 1..500
Programs
-
Mathematica
For[ n=1, True, n++, If[ DivisorSigma[ 1, EulerPhi[ n ] ]/DivisorSigma[ 1, n ]==4, Print[ n ] ] ]
-
PARI
is(n)=sigma(phi(n=factor(n)))/sigma(n)==4 \\ Charles R Greathouse IV, Nov 27 2013
Comments