A088012 Odd solutions to abs(sigma(k) - 2k) <= log(k). Numbers k whose abundance-radius does not exceed log(k).
1155, 8925, 32445, 442365, 159030135, 815634435, 2586415095, 1956860570050575, 221753180448460815, 747406020889133775
Offset: 1
Examples
1155 is in the sequence because sigma(1155) = 2304, giving 2*1155 - 2304 = 6, while natural log of 1155 is about 7.05. From _M. F. Hasler_, Jul 18 2016: (Start) We have the following factorizations: 1155 = 3 * 5 * 7 * 11, 8925 = 3 * 5^2 * 7 * 17, 32445 = 3^2 * 5 * 7 * 103, 442365 = 3 * 5 * 7 * 11 * 383, 159030135 = 3^5 * 5 * 11 * 73 * 163, 815634435 = 3 * 5 * 7 * 11 * 547 * 1291, 2586415095 = 3^2 * 5 * 11 * 31 * 41 * 4111. The sequence appears to be a subsequence of A171929. (End)
Crossrefs
Programs
-
Mathematica
abu[x_] := Abs[DivisorSigma[1, x]-2*x] Do[If[ !Greater[abu[n], Log[n]//N]&&OddQ[n], Print[n]], {n, 1, 100000}]
-
PARI
is(n)=n%2 && abs(sigma(n)-2*n)<=log(n) \\ Charles R Greathouse IV, Feb 21 2017
Extensions
a(7) from Donovan Johnson, Dec 21 2008
a(9) from Alexander Violette confirmed and a(8), a(10) added by Max Alekseyev, Jul 27 2025
Comments