A223612 Numbers k whose abundance is 22: sigma(k) - 2*k = 22.
1312, 29824, 8341504, 134029312, 34356723712
Offset: 1
Examples
For k = 34356723712, sigma(k) - 2*k = 22.
Programs
-
Magma
[n: n in [1..9*10^6] | (SumOfDivisors(n)-2*n) eq 22]; // Vincenzo Librandi, Sep 14 2016
-
Mathematica
Select[Range[1, 10^6], DivisorSigma[1, #] - 2 # == 22 &] (* Vincenzo Librandi, Sep 14 2016 *)
-
PARI
for(n=1, 10^8, if(sigma(n)-2*n==22, print1(n ", ")))
Extensions
Name edited by Timothy L. Tiffin, Sep 10 2023
Comments