login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A162337
Primes p such that floor(p/3) is prime.
1
7, 11, 17, 23, 41, 53, 59, 71, 89, 113, 131, 179, 239, 251, 269, 293, 311, 383, 419, 449, 491, 503, 521, 593, 599, 683, 701, 719, 773, 809, 881, 941, 953, 1013, 1049, 1061, 1103, 1151, 1193, 1229, 1259, 1301, 1319, 1373, 1439, 1499, 1511, 1571, 1709, 1733
OFFSET
1,1
COMMENTS
Essentially the same as A094524. - R. J. Mathar, Jul 05 2009
EXAMPLE
7 is in the sequence since floor(7/3) = 2 is prime; 89 is in the sequence since floor(89/3) = 29 is prime.
MATHEMATICA
lst={}; Do[r=Prime[n]; If[PrimeQ[p=Floor[r/3]], AppendTo[lst, r]], {n, 6!}]; lst
PROG
(Magma) [ p: p in PrimesUpTo(1800) | IsPrime(p div 3) ]; // Klaus Brockhaus, Jul 06 2009
CROSSREFS
Cf. A162338. Essentially the same as A094524.
Sequence in context: A370009 A088176 A046132 * A056687 A088981 A257666
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited and listed terms verified by Klaus Brockhaus, Jul 06 2009
STATUS
approved