The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A145477 Primes p such that (23 + p)/2 is prime. 3

%I #17 Jan 26 2024 12:43:43

%S 3,11,23,59,71,83,179,191,239,251,311,359,431,443,479,491,503,563,599,

%T 683,743,839,863,911,983,1019,1091,1103,1151,1163,1259,1283,1499,1523,

%U 1571,1619,1871,1931,2003,2039,2099,2339,2351,2411,2423,2531,2543,2579

%N Primes p such that (23 + p)/2 is prime.

%C All these primes are congruent to 3 mod 4 and (with the exception of the first term) to 11 mod 12.

%H Ivan Neretin, <a href="/A145477/b145477.txt">Table of n, a(n) for n = 1..10000</a>

%t aa = {}; k = 23; Do[If[PrimeQ[(k + Prime[n])/2], AppendTo[aa, Prime[n]]], {n, 1, 500}];aa

%t Select[Prime[Range[400]],PrimeQ[(23+#)/2]&] (* _Harvey P. Dale_, Jan 26 2024 *)

%o (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

%Y Cf. A092109, A145471-A145480.

%K nonn

%O 1,1

%A _Artur Jasinski_, Oct 11 2008

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 May 16 08:41 EDT 2024. Contains 372552 sequences. (Running on oeis4.)