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!)
A198471 Abundant numbers that are smaller than the sum of their deficient divisors. 3
20, 30, 42, 66, 70, 78, 88, 102, 104, 114, 138, 150, 174, 186, 210, 220, 222, 246, 258, 260, 272, 282, 294, 304, 308, 318, 330, 340, 354, 364, 366, 368, 380, 390, 402, 426, 438, 450, 460, 462, 464, 474, 476, 498, 510, 532, 534, 546, 550, 570, 572, 580, 582, 606 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The primitive abundant number sequence (A071395) is a subsequence of this sequence.
LINKS
EXAMPLE
a(5) = 70 since 70 is smaller than 74, which is the sum of its deficient divisors.
MATHEMATICA
totdef[n_] := Total@Select[Divisors@n, DivisorSigma[-1, #] < 2 &]; Select[Range[570], DivisorSigma[-1, #] > 2 && # < totdef[#] &] (* Giovanni Resta, Jan 09 2013 *)
PROG
(PARI) isok(n) = (sigma(n) > 2*n) && (n < sumdiv(n, d, if (sigma(d) < 2*d, d))); \\ Michel Marcus, Jun 21 2019
CROSSREFS
Sequence in context: A109944 A108030 A095787 * A120145 A104048 A078499
KEYWORD
nonn
AUTHOR
Timothy L. Tiffin, Jan 07 2013
EXTENSIONS
a(21)-a(50) from Giovanni Resta, Jan 09 2013
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)