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!)
A214408 Abundant numbers for which the abundance is not a divisor. 3
30, 36, 42, 48, 54, 60, 66, 70, 72, 78, 80, 84, 90, 96, 100, 102, 108, 112, 114, 126, 132, 138, 140, 144, 150, 156, 160, 162, 168, 174, 176, 180, 186, 192, 198, 200, 204, 208, 210, 216, 220, 222, 228, 240, 246, 252, 258, 260, 264, 270, 272, 276, 280, 282 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The abundance of a number is sigma(n) - 2n (A033880).
Most of these numbers are pseudoperfect (A005835), but more than one proper divisor is left out of the sum.
The first odd term is 945, the second is 1575. The smallest odd abundant number not in this sequence is 173369889, found by Donovan Johnson. Peter J. C. Moses has verified all other odd abundant numbers up to 1.4 * 10^19 have an abundance that is not a proper divisor.
Almost all multiples of 6 are in this sequence. Given a prime p > 3, the abundance of 6p works out to 12, but 6p is not divisible by 4, though it is by 2 and by 3. The abundance of 12p is 16p + 28, and clearly that is not a divisor of 12p. Multiples of 6 with more prime factors will have abundances that are greater than the largest proper divisor by greater margins still.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harvey P. Dale)
EXAMPLE
The abundance of 36 is 19, but 19 is not a divisor of 36, hence 36 is in the sequence.
The abundance of 40 is 10, which is a divisor of 40, hence 40 is not in the sequence.
MAPLE
filter:= proc(n) local b; b:= numtheory:-sigma(n) - 2*n; b > 0 and n mod b <> 0 end proc:
select(filter, [$1..1000]); # Robert Israel, Dec 27 2016
MATHEMATICA
Select[A005101, Not[MemberQ[Divisors[#], DivisorSigma[1, #] - 2#]] &]
anumQ[n_]:=Module[{a=DivisorSigma[1, n]-2n}, a>0&&!Divisible[n, a]]; Select[Range[300], anumQ] (* Harvey P. Dale, Dec 23 2016 *)
PROG
(PARI) is(n) = {my(ab = sigma(n) - 2*n); ab > 0 && n % ab; } \\ Amiram Eldar, Apr 07 2024
CROSSREFS
Cf. A033880, A005835, A181595, A006037 (weird numbers, a subset).
Sequence in context: A257440 A114840 A284787 * A350353 A357874 A325264
KEYWORD
nonn
AUTHOR
Alonso del Arte, Jul 16 2012
EXTENSIONS
Corrected by Harvey P. Dale, Dec 23 2016
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 23 08:33 EDT 2024. Contains 371905 sequences. (Running on oeis4.)