OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..576 (terms below 2.5*10^10)
EXAMPLE
180 is a term since sigma(180) - 3*180 = 6 > 0 and 180 is divisible by 6.
MATHEMATICA
Select[Range[27000], (d = DivisorSigma[1, #] - 3*#) > 0 && Divisible[#, d] &]
PROG
(PARI) is(n) = {my(d = sigma(n) - 3*n); d > 0 && n%d == 0; }
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Aug 15 2023
STATUS
approved