A101223 Numbers m whose deficiency is 10, or: sigma(m) = 2m - 10.
11, 21, 26, 68, 656, 2336, 8768, 133376, 528896, 34360918016, 35184409837568, 576460757135261696
Offset: 1
Examples
The divisors of 68 are {1, 2, 4, 17, 34, 68} and so sigma(68) = 1 + 2 + 4 + 17+ 24 + 68 = 126 = 2*68 - 10; thus, the deficiency of 68 is 10 so 68 is a term of the sequence.
Crossrefs
Programs
-
Magma
[n: n in [1..9*10^6] | (SumOfDivisors(n)) eq 2*n-10]; // Vincenzo Librandi, Sep 15 2016
-
Mathematica
Select[ Range[ 85000000], DivisorSigma[1, # ] + 10 == 2# &]
Extensions
Edited and extended by Robert G. Wilson v, Dec 15 2004
a(10) from Donovan Johnson, Dec 23 2008
Edited by M. F. Hasler, Jul 18 2016
a(11)-a(12) from Hiroaki Yamanouchi, Aug 21 2018
Comments