For a positive integer N, define
W(N) = sum over divisors d of N with d < sqrt(N) of (N/d - d)
and
E(N) = W(N) - (N - 1).
A few easy observations:
For example:
E(15) = 2
E(21) = 4
E(35) = 2
While experimenting with this function, I noticed an unexpected fixed point:
E(392) = 392.
The divisors of 392 below sqrt(392) are:
1, 2, 4, 7, 8, 14
and
W(392)
= (392-1) + (196-2) + (98-4) + (56-7) + (49-8) + (28-14)
= 783
so
E(392) = 783 - 391 = 392.
For nonsquare N, let
S(N) = sum of divisors below sqrt(N)
and
R(N) = sum of reciprocals of divisors below sqrt(N).
Then E(N) = N is equivalent to
R(N) - 2 = (S(N) - 1)/N.
I have checked all N <= 50,000,000 and found no other solutions to E(N) = N.
My questions are:
I'm not claiming uniqueness, only that 392 appears to be the only example found so far computationally.
W(N) = sum over divisors d of N with d < sqrt(N) of (N/d - d)
and
E(N) = W(N) - (N - 1).
A few easy observations:
- E(p) = 0 for primes p.
- E(p²) = 0 for prime squares.
- If N = pq with primes p < q, then E(N) = q - p.
For example:
E(15) = 2
E(21) = 4
E(35) = 2
While experimenting with this function, I noticed an unexpected fixed point:
E(392) = 392.
The divisors of 392 below sqrt(392) are:
1, 2, 4, 7, 8, 14
and
W(392)
= (392-1) + (196-2) + (98-4) + (56-7) + (49-8) + (28-14)
= 783
so
E(392) = 783 - 391 = 392.
For nonsquare N, let
S(N) = sum of divisors below sqrt(N)
and
R(N) = sum of reciprocals of divisors below sqrt(N).
Then E(N) = N is equivalent to
R(N) - 2 = (S(N) - 1)/N.
I have checked all N <= 50,000,000 and found no other solutions to E(N) = N.
My questions are:
- Is this function (or an equivalent form) already known?
- Is there any known divisor-theoretic reason why 392 satisfies E(N) = N?
- Does the reformulation
R(N) - 2 = (S(N) - 1)/N
suggest a route toward proving or disproving uniqueness?
I'm not claiming uniqueness, only that 392 appears to be the only example found so far computationally.