OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1500 from Paolo P. Lava)
EXAMPLE
One of the proper divisors of 1080 is 120 and sigma(1080) - 3*120 = 3600 - 360 = 3240 = 3*1080.
One of the proper divisors of 17850 is 6 and sigma(17850) - 3*6 = 53568 - 18 = 53550 = 3*17850.
MAPLE
with(numtheory): P:=proc(q, h) local a, b, c, k; c:=0; a:=sort([op(divisors(q))]); for k from 1 to nops(a)-1 do if sigma(q)-h*a[k]=h*q then c:=1; break; fi; od; if c=1 then q; fi; end: seq(P(i, 3), i=1..7200);
MATHEMATICA
k=3; Select[Range[7128], (t = DivisorSigma[1, #]/k - #; # > t > 0 && IntegerQ[t] && Mod[#, t] == 0) &] (* Giovanni Resta, Aug 25 2017 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Aug 24 2017
STATUS
approved