A214408 Abundant numbers for which the abundance is not a divisor.
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
Offset: 1
Keywords
Examples
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.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harvey P. Dale)
Programs
-
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 *)
-
PARI
is(n) = {my(ab = sigma(n) - 2*n); ab > 0 && n % ab;} \\ Amiram Eldar, Apr 07 2024
Extensions
Corrected by Harvey P. Dale, Dec 23 2016
Comments