OFFSET
1,1
COMMENTS
The abundancy of a number n is defined as sigma(n)/n. Abundant numbers have an abundancy greater than 2. All these numbers must be odd primitive abundant numbers, A006038.
These numbers might be considered the opposite of A119239, which has odd numbers whose abundancy increases. This sequence has terms in common with A171929. A similar sequence for deficient numbers is A188597.
These are odd numbers that are barely abundant. See A071927 for the even version.
a(24) > 10^12. - Donovan Johnson, May 05 2012
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..31 (terms < 10^13)
MATHEMATICA
k = 1; minDiff = 1; Table[k = k + 2; While[abun = DivisorSigma[1, k]/k; abun - 2 > minDiff || abun < 2, k = k + 2]; minDiff = abun - 2; k, {10}]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Mar 30 2011
EXTENSIONS
a(15)-a(16) from Donovan Johnson, Mar 31 2011
a(17)-a(22) from Donovan Johnson, Apr 02 2011
a(23) from Donovan Johnson, May 05 2012
STATUS
approved