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”).

A099389
Subsequence of primes in sequence b(n) = 3*prime(n) - prime(n+1) - 3 (A100021).
3
5, 7, 17, 19, 29, 31, 37, 53, 53, 67, 79, 97, 113, 113, 127, 137, 137, 151, 157, 167, 197, 199, 211, 269, 293, 293, 337, 353, 349, 379, 389, 383, 439, 449, 457, 547, 557, 569, 607, 617, 619, 617, 653, 661, 691, 751, 757, 787, 829, 857, 857, 877, 887, 907, 919
OFFSET
1,1
LINKS
MATHEMATICA
Select[3#[[1]]-#[[2]]-3&/@Partition[Prime[Range[100]], 2, 1], PrimeQ] (* Harvey P. Dale, Oct 13 2018 *)
PROG
(PARI) for(n=1, 91, if(isprime(k=3*prime(n)-prime(n+1)-3), print1(k, ", ")))
CROSSREFS
Sequence in context: A045318 A040102 A100021 * A099382 A163633 A092242
KEYWORD
nonn,less,easy
AUTHOR
Giovanni Teofilatto, Nov 17 2004
EXTENSIONS
Edited and extended by Klaus Brockhaus, Nov 19 2004
STATUS
approved