A125247 Numbers n whose abundance sigma(n) - 2n = -8. Numbers n whose deficiency is 8.
22, 130, 184, 1012, 2272, 18904, 33664, 70564, 85936, 100804, 391612, 527872, 1090912, 17619844, 2147713024, 6800695312, 34360655872, 549759483904, 1661355408388, 28502765343364, 82994670582016, 99249696661504, 120646991405056, 431202442356004, 952413274955776
Offset: 1
Examples
The abundance of 22 = (1+2+11+22)-44 = -8
Links
- Hiroaki Yamanouchi, Table of n, a(n) for n = 1..29
Programs
-
Magma
[n: n in [1..2*10^7] | (DivisorSigma(1,n)-2*n) eq - 8]; // Vincenzo Librandi, Jul 22 2016
-
Mathematica
Select[Range[10^6], DivisorSigma[1, #] - 2 # == -8 &] (* Michael De Vlieger, Jul 21 2016 *)
-
PARI
for(n=1,1000000,if(((sigma(n)-2*n)==-8),print1(n,",")))
Extensions
a(13)-a(15) from Klaus Brockhaus, Nov 29 2006
a(16)-a(17) from Donovan Johnson, Dec 23 2008
a(18) from Donovan Johnson, Dec 08 2011
a(19) from Giovanni Resta, Mar 29 2013
a(20)-a(25) from Hiroaki Yamanouchi, Aug 21 2018
Comments