A011775 Numbers k such that k divides phi(k) * sigma(k).
1, 6, 18, 24, 28, 40, 54, 72, 84, 96, 117, 120, 135, 162, 196, 200, 216, 224, 234, 252, 270, 288, 360, 384, 468, 486, 496, 540, 588, 600, 640, 648, 672, 756, 775, 819, 864, 891, 936, 1000, 1080, 1152, 1350, 1372, 1458, 1488, 1521, 1536, 1550, 1568, 1638, 1701, 1764
Offset: 1
Keywords
Links
- Donovan Johnson, Table of n, a(n) for n = 1..10000
- Richard K. Guy, Divisors and desires, Amer. Math. Monthly, 104 (1997), 359-360.
Programs
-
Mathematica
Select[Range[1770], IntegerQ[DivisorSigma[1, # ]*EulerPhi[ # ]/# ] &] (* Farideh Firoozbakht, Dec 01 2005 *)
-
PARI
is(n)=sigma(n)*eulerphi(n)%n==0 \\ Charles R Greathouse IV, Nov 27 2013
Extensions
Corrected and extended by David W. Wilson
Comments