A074844 Largest difference between consecutive divisors of n is equal to the sum of divisors of n except 1 and n.
4, 345, 6489, 88473
Offset: 1
Examples
The divisors of 345 are [1, 3, 5, 15, 23, 69, 115, 345] and the largest difference between consecutive divisors is 345-115 = 230; the sum of divisors except 1 and 345 are 3+5+15+23+69+115 = 230.
Programs
-
Maple
with(numtheory): a:=proc(n) local div: div:=divisors(n): if max(seq(div[j]-div[j-1],j=2..tau(n)))=sigma(n)-1-n then n else fi end: seq(a(n),n=1..100000); # Emeric Deutsch, Aug 04 2005
Extensions
More terms from Emeric Deutsch, Aug 04 2005
Comments