A positive integer n is said to be perfect if

sigma(n) = 2n

where sigma(x) is the classical sum of divisors of the positive integer x.

For example, 6 and 28 are perfect, since

sigma(6) = 1 + 2 + 3 + 6 = 12 = 2(6)

sigma(28) = 1 + 2 + 4 + 7 + 14 + 28 = 56 = 2(28).

Currently, as of October 2023, only 51 perfect numbers are known, and they are all even.

It is currently unknown whether there are any odd perfect numbers.

Euler did derive the possible form of an odd perfect number N, and it is

N = p^k m^2

where p is the special prime satisfying p == k == 1 (mod 4) and gcd(p, m) = 1.

Here is my question:

Do you know of any other papers outlining a GCD approach to odd perfect numbers, apart from the following articles?

  • Gcd in Odd perfect number by Devansh Singh (https://www.researchgate.net/publication/363799063)
  • A new approach to odd perfect numbers via GCDs by Jose Arnaldo Bebita Dris (https://www.researchgate.net/publication/358655289)

Please advise.

More Jose Arnaldo Bebita Dris's questions See All
Similar questions and discussions