login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A263837 Non-abundant numbers (or nonabundant numbers): complement of A005101; numbers k for which sigma(k) <= 2*k. 17
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 37, 38, 39, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 67, 68, 69, 71, 73, 74, 75, 76, 77, 79, 81, 82, 83, 85, 86, 87, 89, 91, 92, 93, 94, 95, 97, 98, 99 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For all n, A003961(a(n)) is in A005100. - Antti Karttunen, Aug 28 2020
LINKS
Paul Pollack and Carl Pomerance, Some problems of Erdős on the sum-of-divisors function, For Richard Guy on his 99th birthday: May his sequence be unbounded, Trans. Amer. Math. Soc. Ser. B 3 (2016), 1-26.
FORMULA
A001065(a(n)) <= a(n). - Reinhard Zumkeller, Oct 31 2015
MATHEMATICA
Select[Range[100], DivisorSigma[1, #] <= 2*# &] (* Amiram Eldar, Mar 14 2024 *)
PROG
(Haskell)
a263837 n = a263837_list !! (n-1)
a263837_list = filter (\x -> a001065 x <= x) [1..]
-- Reinhard Zumkeller, Oct 31 2015
(PARI) isok(n) = sigma(n) <= 2*n; \\ Michel Marcus, Dec 27 2015
CROSSREFS
Union of A000396 and A005100.
Cf. A005101 (complement), A023196, A294935 (characteristic function).
Sequence in context: A368007 A360553 A067340 * A283550 A271113 A325369
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 30 2015
EXTENSIONS
Additional description to the definition added by Antti Karttunen, Aug 28 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 3 20:19 EDT 2024. Contains 372222 sequences. (Running on oeis4.)