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!)
A145473 Primes p such that (11 + p)/2 is prime. 2
3, 11, 23, 47, 71, 83, 107, 131, 167, 191, 251, 263, 347, 383, 443, 467, 491, 503, 683, 827, 887, 911, 947, 971, 1031, 1103, 1163, 1187, 1223, 1283, 1307, 1427, 1511, 1583, 1607, 1667, 1811, 1847, 1871, 1931, 2027, 2087, 2111, 2207, 2351, 2423, 2447, 2543 (list; graph; refs; listen; history; text; internal format)
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
MATHEMATICA
aa = {}; k = 11; Do[If[PrimeQ[(k + Prime[n])/2], AppendTo[aa, Prime[n]]], {n, 1, 500}]; aa
Select[Prime[Range[400]], PrimeQ[(#+11)/2]&] (* Harvey P. Dale, Apr 15 2012 *)
PROG
(PARI) first(n)=my(t=1, p, i=1); while(i<n, p=prime(i); i=i+1; if(p>2&&isprime((11+p)/2), print1(p, ", "))) \\ Anders Hellström, Jan 22 2017
CROSSREFS
Sequence in context: A296556 A141187 A107138 * A335677 A248348 A173078
KEYWORD
nonn
AUTHOR
Artur Jasinski, Oct 11 2008
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 April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)