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?
Please advise.