login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A164320
Primes p such that sums of divisors of the two adjacent integers are each > 2*p.
1
19, 31, 41, 71, 79, 89, 101, 103, 113, 127, 139, 197, 199, 223, 271, 281, 307, 349, 353, 367, 379, 401, 439, 449, 461, 463, 491, 499, 521, 571, 607, 617, 619, 641, 643, 701, 727, 739, 761, 769, 811, 821, 859, 881, 911, 919, 929, 941, 953, 967, 991, 1039, 1061
OFFSET
1,1
LINKS
FORMULA
Intersection of A164318 and A164319.
EXAMPLE
For p=19, the sum of the divisors of 18 is A000203(18)=39 > 2*19, and the sum of the divisors
of 20 is A000203(20)= 42 > 2*19, so p=19 is in the sequence.
MATHEMATICA
f[n_]:=Plus@@Divisors[n]; lst={}; Do[p=Prime[n]; If[f[p-1]>2*p&&f[p+1]> 2*p, AppendTo[lst, p]], {n, 6!}]; lst
Select[Prime[Range[200]], DivisorSigma[1, #-1]>2#&&DivisorSigma[ 1, #+1]>2#&] (* Harvey P. Dale, Nov 10 2011 *)
CROSSREFS
Sequence in context: A040088 A178251 A335418 * A154418 A120337 A120115
KEYWORD
nonn
AUTHOR
EXTENSIONS
References to unrelated sequences removed by R. J. Mathar, Aug 21 2009
STATUS
approved