OFFSET
1,1
COMMENTS
All these primes are congruent to 3 mod 4 and (with the exception of the first term) to 11 mod 12.
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..10000
MATHEMATICA
aa = {}; k = 23; Do[If[PrimeQ[(k + Prime[n])/2], AppendTo[aa, Prime[n]]], {n, 1, 500}]; aa
Select[Prime[Range[400]], PrimeQ[(23+#)/2]&] (* Harvey P. Dale, Jan 26 2024 *)
PROG
(PARI) list(n)=my(t=1, p, i=1); while(i<n, p=prime(i); i=i+1; if(p>2&&prime((23+p)/2), print1(p, ", "))) \\ Anders Hellström, Jan 23 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Oct 11 2008
STATUS
approved