A330533 Multiply-perfect numbers m whose average divisor is not an integer.
28, 120, 496, 8128, 523776, 2178540, 33550336, 142990848, 459818240, 1379454720, 1476304896, 8589869056, 31998395520, 43861478400, 66433720320, 137438691328, 704575228896, 30823866178560, 181742883469056, 6088728021160320, 14942123276641920, 20158185857531904
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..307
Programs
-
Magma
[m: m in [1..10^5] | not IsIntegral(SumOfDivisors(m) / NumberOfDivisors(m)) and IsIntegral(SumOfDivisors(m) / m)];
-
Mathematica
Select[Range[10^6], Divisible[(s = DivisorSigma[1, #]), #] && !Divisible[s, DivisorSigma[0, #]] &] (* Amiram Eldar, Dec 19 2019 *)
Comments