OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..218
EXAMPLE
120 is a term because 120*(120-tau(120))/sigma(120) = 120*(120-16)/360 = 104/3.
MATHEMATICA
Select[Range[10^6], And[Mod[#3, #1] == 0, !IntegerQ[#1 (#1 - #2)/#3]] & @@ Prepend[DivisorSigma[{0, 1}, #], #] &] (* Amiram Eldar, Jul 10 2019 after Michael De Vlieger at A325023 *)
PROG
(Magma) [n: n in [1..1000000] | not IsIntegral(((n-NumberOfDivisors(n)) * n) / SumOfDivisors(n)) and IsIntegral(SumOfDivisors(n)/n)]
(PARI) isA325024(m) = { my(s=sigma(m)); ((1==denominator(s/m)) && (1!=denominator(m*(m-numdiv(m))/s))); }; \\ Antti Karttunen, May 25 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, May 12 2019
STATUS
approved