OFFSET
1,2
COMMENTS
Sum_{d|n} sigma(d)/tau(d) > 1 for all n > 1.
Sum_{d|n} sigma(d)/tau(d) = n only for numbers 1, 3, 10 and 30.
Odd primes are terms.
Corresponding values of integers h: 1, 3, 4, 5, 10, 7, 8, 12, 10, 11, 15, 13, 20, 16, 30, 17, 21, 25, 20, 20, 24, ...
FORMULA
A324500(a(n)) = 1.
EXAMPLE
Sum_{d|n} sigma(d)/tau(d) for n >= 1: 1, 5/2, 3, 29/6, 4, 15/2, 5, 103/12, 22/3, 10, 7, 29/2, 8, 25/2, 12, 887/60, ...
10 is a term because Sum_{d|10} (sigma(d)/tau(d)) = sigma(1)/tau(1) + sigma(2)/tau(2) + sigma(5)/tau(5) + sigma(10)/tau(10) = 1/1 + 3/2 + 6/2 + 18/4 = 10 (integer).
PROG
(Magma) [n: n in [1..1000] | Denominator(&+[SumOfDivisors(d) / NumberOfDivisors(d): d in Divisors(n)]) eq 1]
(PARI) isok(n) = frac(sumdiv(n, d, sigma(d)/numdiv(d))) == 0; \\ Michel Marcus, Mar 03 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Mar 02 2019
STATUS
approved