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”).

A124662
Primes prime(n) such that there exists a 0 < k < n-1 such that prime(n+k) + prime(n-k) = 2*prime(n).
1
5, 11, 13, 17, 29, 31, 37, 41, 53, 59, 61, 67, 71, 83, 89, 97, 101, 103, 107, 127, 131, 137, 139, 151, 157, 167, 173, 179, 181, 191, 193, 197, 211, 233, 251, 257, 263, 277, 307, 311, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421
OFFSET
1,1
COMMENTS
prime(11+3) + prime(11-3) = 2*prime(11); therefore prime(11) = 31 is in the sequence.
MATHEMATICA
a = {}; For[k = 3, k < 100, k++, For[n = 1, n < k - 1, n++, If[(Prime[k + n] + Prime[k - n])/2 == Prime[k], AppendTo[a, Prime[k]]]]]; Union[a, a]
CROSSREFS
Sequence in context: A003632 A019354 A230288 * A226614 A328058 A191042
KEYWORD
nonn
AUTHOR
Artur Jasinski, Dec 23 2006
EXTENSIONS
Edited, corrected and extended by Stefan Steinerberger, Jul 31 2007
STATUS
approved