A069057 Numbers k such that the numerator of Sum_{d|k} 1/d > 2k.
36, 100, 144, 324, 392, 400, 576, 784, 800, 900, 968, 1296, 1352, 1575, 1600, 1936, 2304, 2450, 2500, 2704, 2916, 3136, 3600, 3872, 4356, 4624, 5184, 5408, 5776, 6050, 6272, 6400, 7744, 8100, 8450, 8464, 9216, 9248, 10000, 10404, 10816, 11552, 11664
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[12000], Numerator[Total[1/Divisors@ #]] > 2 # &] (* Michael De Vlieger, May 04 2016 *)
-
PARI
isok(n) = numerator(sigma(n)/n) > 2*n; \\ Michel Marcus, May 04 2016
Comments