OFFSET
1,2
COMMENTS
Corresponding values of integers k: 1, 3, 6, 15, 18, 28, 30, 39, 45, 66, 56, 91, 84, 90, 153, 117, 190, 140, 168, ...
Supersequence of refactorable (A033950), arithmetic (A003601) and refactorable arithmetic numbers (A047727).
Sequence of numbers from this sequence that are neither refactorable nor arithmetic: 10, 26, 32, 34, 50, 58, 63, 74, 75, 82, 90, 98, 106, 117, 120, 122, 130, 146, ...
EXAMPLE
10 is a term because (10 * sigma(10)) / tau(10) = (10 * 18) / 4 = 45 (integer).
MATHEMATICA
Select[Range[100], Divisible[# * DivisorSigma[1, #], DivisorSigma[0, #]] &] (* Amiram Eldar, Mar 31 2020 *)
PROG
(Magma) [m: m in [1..10^5] | IsIntegral((&+Divisors(m) * m) / #Divisors(m))]
(PARI) isok(m) = (m*sigma(m) % numdiv(m)) == 0; \\ Michel Marcus, Mar 31 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Mar 30 2020
STATUS
approved