A247334 Highly abundant numbers which are not abundant.
1, 2, 3, 4, 6, 8, 10, 16
Offset: 1
Examples
10 is in the sequence because sigma(10) > sigma(m) for m = 1 to 9, yet sigma(10) = 17 < 20.
Links
- Daniel Fischer, Prove that if Fn is highly abundant, then so is n, Mathematics Stack Exchange, Aug 13 2013
Programs
-
PARI
for(n=1, 1000, if((sum(i=1, n-1, sign(sigma(n)-sigma(i))) == n-1) && (sigma(n) <= 2*n), print1(n, ", "))) \\ Michel Marcus, Sep 21 2014
-
PARI
is_A247334(n)={!for(i=2,n-1, sigma(n)>sigma(i)||return) && sigma(n)<=2*n} \\ M. F. Hasler, Oct 15 2014
Comments