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!)
A373316 Numbers k such that k and k+2 are both primitive abundant numbers. 1
18, 102, 364, 366, 474, 532, 642, 834, 1036, 1146, 1182, 1374, 1504, 1696, 1876, 1986, 2210, 2584, 2994, 3052, 3126, 3556, 4396, 4542, 4564, 5032, 5514, 5572, 5574, 5622, 6232, 6412, 6522, 6976, 7026, 7206, 7912, 7924, 8202, 8596, 8706, 9654, 9714 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
18 = 2*3*3 is an abundant number, but its proper divisors are 1, 2, 3, 6 and 9, none of which are abundant.
18 + 2 = 20 = 2*2*5 is an abundant number, but its proper divisors are 1, 2, 4, 5 and 10, none of which are abundant.
Thus, both 18 and 20 are primitive abundant numbers, so 18 is in the sequence.
MATHEMATICA
f1[p_, e_] := (p^(e + 1) - 1)/(p^(e + 1) - p^e); f2[p_, e_] := (p^(e + 1) - p)/(p^(e + 1) - 1); primAbQ[n_] := primAbQ[n] = (r = Times @@ f1 @@@ (f = FactorInteger[n])) > 2 && r * Max @@ f2 @@@ f <= 2; Select[Range[2, 10^4], primAbQ[#] && primAbQ[# + 2] &] (* Amiram Eldar, Jul 20 2024 *)
CROSSREFS
Sequence in context: A229326 A365107 A008528 * A020881 A285043 A223241
KEYWORD
nonn
AUTHOR
Abhiram R Devesh, May 31 2024
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 August 10 19:25 EDT 2024. Contains 375058 sequences. (Running on oeis4.)