OFFSET
1,2
COMMENTS
If s and t are terms with gcd(s, t) = 1, then s*t is another term as phi, sigma and tau are multiplicative functions.
The only prime term is 2 because prime p must divide 2*(p-1)*(p+1) to be a term.
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
EXAMPLE
For 24, phi(24) = 8, sigma(24) = 60 and tau(24) = 8, then 8*60*8 / 24 = 160, hence 24 is a term.
MAPLE
with(numtheory):
filter:= m -> irem(tau(m)*phi(m)*sigma(m), m) =0:
select(filter, [$1..850]);
MATHEMATICA
Select[Range[1000], Divisible[Times @@ DivisorSigma[{0, 1}, #] * EulerPhi[#], #] &] (* Amiram Eldar, Aug 02 2020 *)
PROG
(PARI) isok(m) = !(eulerphi(m)*sigma(m)*numdiv(m) % m); \\ Michel Marcus, Aug 05 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Bernard Schott, Aug 02 2020
STATUS
approved