OFFSET
1,1
COMMENTS
What is the least term m with more than two smaller numbers k with the same harmonic mean of divisors as m?
EXAMPLE
321048 is a term since the harmonic mean of divisors of 321048 is 3528/125, and it is also the harmonic mean of divisors of both 201096 and 296352 which are smaller than 321048.
MATHEMATICA
h = Table[DivisorSigma[0, n]/DivisorSigma[-1, n], {n, 1, 2*10^6}]; i = Position[(t = Tally[h])[[;; , 2]], _?(# > 2 &)] // Flatten; Position[h, #][[3 ;; -1]] & /@ t[[i, 1]] // Flatten // Sort
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Oct 30 2021
STATUS
approved