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!)
A153419 Primes p such that p+20 is also prime. 9
3, 11, 17, 23, 41, 47, 53, 59, 83, 89, 107, 131, 137, 173, 179, 191, 251, 257, 263, 293, 311, 317, 347, 353, 359, 389, 401, 419, 443, 467, 479, 503, 521, 557, 587, 593, 599, 641, 653, 719, 809, 839, 857, 863, 887, 947, 971, 977, 1013, 1019, 1031, 1049, 1097 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000 (first 1000 terms from Vincenzo Librandi)
EXAMPLE
3 is in the sequence because 3+20=23 is prime; 11 is in the sequence because 11+20=31 is prime.
MAPLE
for a from 1 to 140 do if isprime(a) and isprime(a+20) then print(a)
end if; end do; # Matt C. Anderson, Jun 20 2022
MATHEMATICA
Select[Prime[Range[200]], PrimeQ[(# + 20)]&] (* Vincenzo Librandi, Apr 14 2013 *)
PROG
(Magma) [p: p in PrimesUpTo(1100) | IsPrime(p + 20)]; // Vincenzo Librandi, Apr 14 2013
CROSSREFS
Sequence in context: A038960 A019397 A108328 * A079020 A118590 A136082
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Definition improved from Bruno Berselli, Oct 31 2012
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 24 11:49 EDT 2024. Contains 371936 sequences. (Running on oeis4.)