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!)
A272176 Primes p such that p + 44 is also prime. 4
3, 17, 23, 29, 53, 59, 83, 107, 113, 137, 149, 167, 179, 197, 227, 233, 239, 263, 269, 293, 353, 389, 419, 443, 479, 503, 557, 563, 569, 587, 599, 617, 647, 683, 743, 809, 839, 863, 947, 953, 977, 1019, 1049, 1109, 1187, 1193, 1259, 1277, 1283 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A134121 is a subsequence of this sequence.
LINKS
EXAMPLE
3 is a term because 3 + 44 = 47 is also prime.
17 is a term because 17 + 44 = 61 is also prime.
PROG
(Python)
from sympy import isprime
for i in range(3, 3001, 2):
if isprime(i) and isprime(i + 44): print(i, end=', ')
(PARI) lista(nn) = forprime(p=2, nn, if(isprime(p+44), print1(p, ", "))); \\ Altug Alkan, Apr 21 2016
CROSSREFS
Sequence in context: A126692 A057173 A109371 * A082372 A273407 A267067
KEYWORD
nonn
AUTHOR
Karl V. Keller, Jr., Apr 21 2016
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 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)