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!)
A172258 Primes p such that exactly one of the numbers 2p-3 and 2p+3 is prime. 1
2, 3, 11, 19, 23, 29, 31, 37, 41, 47, 71, 73, 83, 89, 101, 107, 139, 173, 181, 191, 197, 199, 211, 227, 229, 233, 241, 251, 263, 269, 277, 307, 311, 317, 331, 337, 347, 349, 353, 373, 379, 383, 397, 409, 421, 431, 433, 439, 443, 457, 461, 463, 467, 503, 509 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(1)=2 because 2*2-3=1 (nonprime) and 2*2+3=7 (prime);
a(2)=29 because 2*29-3=55 (nonprime) and 2*29+3=61 (prime).
MAPLE
a := proc (n): if isprime(n) = true and isprime(2*n-3) = true and isprime(2*n+3) = false then n elif isprime(n) = true and isprime(2*n-3) = false and isprime(2*n+3) = true then n else end if end proc: seq(a(n), n = 1 .. 700); # Emeric Deutsch, Feb 15 2010
MATHEMATICA
Select[Prime[Range[100]], Total[Boole[PrimeQ[2#+{3, -3}]]]==1&] (* Harvey P. Dale, Mar 27 2021 *)
CROSSREFS
Sequence in context: A365374 A095984 A229550 * A306395 A363497 A135206
KEYWORD
nonn
AUTHOR
EXTENSIONS
Definition edited by Emeric Deutsch, Feb 15 2010
Corrected and extended by Emeric Deutsch, Feb 15 2010
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 25 05:56 EDT 2024. Contains 371964 sequences. (Running on oeis4.)