OFFSET
1,1
COMMENTS
Numbers m such that neither the arithmetic mean of the divisors of m nor the antiharmonic mean of the divisors of m is an integer.
Numbers m such that neither A(m) = A000203(m)/A000005(m) nor B(m) = A001157(m)/A000203(m) is an integer.
Corresponding values of A(m): 3/2, 15/4, 9/2, 14/3, 13/2, 15/2, 21/2, 28/3, 21/2, 27/2, 45/4, 62/5, ...
Corresponding values of B(m): 5/3, 17/3, 65/9, 15/2, 35/3, 85/6, 425/21, 75/4, 65/3, 725/27, 221/9, ...
MATHEMATICA
Select[Range[235], !Divisible[DivisorSigma[2, #], (s = DivisorSigma[1, #])] && !Divisible[s, DivisorSigma[0, #]] &] (* Amiram Eldar, Dec 06 2019 *)
PROG
(Magma) [m: m in [1..10^5] | not IsIntegral(SumOfDivisors(m) / NumberOfDivisors(m)) and not IsIntegral(&+[d^2: d in Divisors(m)] / SumOfDivisors(m))]
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Dec 03 2019
STATUS
approved