OFFSET
1,1
EXAMPLE
One of the proper divisors of 294053760 is 2056320 and sigma(294053760) - 5*2056320 = 1480550400 - 10281600 = 1470268800 = 5*294053760.
One of the proper divisors of 3891888000 is 314496 and sigma(3891888000) - 5*314496 = 19461012480 - 1572480 = 19459440000 = 5*3891888000.
MAPLE
with(numtheory): P:=proc(q, h) local a, k, n; for n from 1 to q do a:=sort([op(divisors(n))]);
for k from 1 to nops(a)-1 do if sigma(n)-h*a[k]=h*n then print(n); break; fi; od; od; end: P(10^10, 5);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Aug 24 2017
STATUS
approved