OFFSET
1,2
COMMENTS
Corresponding values of divisors d: 1, 2, 6, 12, 18, 28, 24, 40, 84, 120, 224, 234, 496, 252, 240, 468, 360, 672, ...
EXAMPLE
48 is a term because 6 divides 48, tau(6) = 4, sigma(6) = 12 and tau(6) * sigma(6) = 4 * 12 = 48.
MATHEMATICA
seqQ[n_] := AnyTrue[Divisors[n], DivisorSigma[0, #] * DivisorSigma[1, #] == n &]; Select[Range[70000], seqQ] (* Amiram Eldar, Feb 28 2020 *)
PROG
(Magma) [n: n in [1..10^6] | #[d: d in Divisors(n) | NumberOfDivisors(d)*SumOfDivisors(d) eq n] ge 1]
(PARI) isok(m) = fordiv(m, d, if (sigma(d)*numdiv(d) == m, return (1))); \\ Michel Marcus, Mar 21 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Feb 28 2020
STATUS
approved