OFFSET
1,2
COMMENTS
Corresponding sequences of values of integers g(m), h(m) and k(m): {1, 2, 8, 9, 24, 24, 54, 96, 80, 81, 96, 200, ...}, {1, 18, 56448, 298116, 38102400, 44717400, 87889565400, 3164024354400, ...}, {1, 8, 72, 64, 384, 384, 864, 1944, 1280, 1024, 1536, 4608, 2304, 9600, 2916, ...}.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..34 (terms below 10^14)
MATHEMATICA
Select[Range[10^5], Divisible[# * (d = DivisorSigma[0, #]), (s = DivisorSigma[1, #])] && Divisible[# * s, d] && Divisible[d * s, #] &] (* Amiram Eldar, Mar 31 2020 *)
PROG
(Magma) [m: m in [1..10^5] | IsIntegral((m * #Divisors(m)) / &+Divisors(m)) and IsIntegral((&+Divisors(m) * m) / #Divisors(m)) and IsIntegral((&+Divisors(m) * #Divisors(m)) / m)]
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Mar 30 2020
STATUS
approved