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!)
A240073 Deficient numbers k for which sigma(k), the sum of divisors of k, reaches a new maximum. 1
1, 2, 3, 4, 7, 8, 10, 14, 16, 21, 22, 26, 32, 44, 50, 52, 63, 64, 76, 92, 98, 105, 110, 124, 128, 136, 152, 170, 182, 184, 212, 225, 230, 232, 248, 256, 290, 296, 310, 315, 328, 344, 370, 376, 405, 410, 424, 470, 472, 484, 495, 512, 568, 584, 592, 632, 656 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Every power of 2 appears. The deficient number k has sigma(k) < 2*k. In relation to the highly abundant numbers, these numbers might be termed highly deficient numbers.
LINKS
MATHEMATICA
t = {}; mn = 0; n = 0; While[Length[t] < 100, n++; d = DivisorSigma[1, n]; If[mn < d < 2*n, AppendTo[t, n]; mn = d]]; t
PROG
(PARI) lista(kmax) = {my(sigmax = 0, sig); for(k = 1, kmax, sig = sigma(k); if(sig < 2*k && sig > sigmax, sigmax = sig; print1(k, ", "))); } \\ Amiram Eldar, Apr 06 2024
CROSSREFS
Cf. A002093 (highly abundant numbers), A005100 (deficient numbers).
Cf. A228450 (deficient numbers with increasing abundancy).
Sequence in context: A171781 A329395 A065294 * A332579 A357490 A333778
KEYWORD
nonn,changed
AUTHOR
T. D. Noe, Apr 08 2014
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 April 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)