A066831 Numbers k such that sigma(k) divides sigma(phi(k)).
1, 13, 71, 87, 89, 181, 203, 305, 319, 362, 667, 899, 1257, 1363, 1421, 1525, 1711, 1798, 1889, 2407, 2501, 2933, 3103, 4609, 4615, 4687, 4843, 5002, 5191, 6583, 7123, 7625, 7627, 9374, 9947, 10063, 10411, 10991, 11107, 12989, 13543, 13891, 14587
Offset: 1
Keywords
References
- R. K. Guy, Unsolved Problems in Number Theory, B42.
Links
- Harry J. Smith, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
For[ n=1, True, n++, If[ Mod[ DivisorSigma[ 1, EulerPhi[ n ] ], DivisorSigma[ 1, n ] ]==0, Print[ n ] ] ] Select[Range[15000],Divisible[DivisorSigma[1, EulerPhi[#]], DivisorSigma[1,#]]&] (* Harvey P. Dale, Oct 19 2011 *)
-
PARI
isok(k) = { sigma(eulerphi(k)) % sigma(k) == 0 } \\ Harry J. Smith, Mar 30 2010
Extensions
More terms from Vladeta Jovovic and Robert G. Wilson v, Jan 20 2002
Edited by Dean Hickerson, Jan 20 2002
Comments