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”).
%I #17 Sep 08 2022 08:45:28
%S 3,5,7,13,23,37,43,103,127,163,167,257,293,313,337,433,523,757,797,
%T 887,953,1013,1063,1153,1283,1303,1307,1483,1597,1657,1667,1693,1723,
%U 1783,1913,2003,2333,2347,2557,2897,2927,3067,3533,3823,3943,4003,4013,4093
%N Primes p such that 3p - 2 and 3p + 2 are also primes.
%H Charles R Greathouse IV, <a href="/A125272/b125272.txt">Table of n, a(n) for n = 1..10000</a>
%F a(n) = A125215(n)/3.
%t lst={}; Do[p=Prime[n]; If[PrimeQ[3*p-2]&&PrimeQ[3*p+2],AppendTo[lst,p]],{n,7!}]; lst (* _Vladimir Joseph Stephan Orlovsky_, Jan 18 2009 *)
%t Select[Prime[Range[600]],AllTrue[3#+{2,-2},PrimeQ]&] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, May 29 2021 *)
%o (Magma) [p: p in PrimesUpTo(70000)| IsPrime(3*p-2)and IsPrime(3*p+2)] // _Vincenzo Librandi_, Jan 29 2011
%o (PARI) is(n)=isprime(3*n-2)&&isprime(3*n+2)&&isprime(n) \\ _Charles R Greathouse IV_, Jul 02 2013
%Y Intersection of A023208 and A088878.
%Y Cf. A125215.
%K nonn,easy
%O 1,1
%A _Zak Seidov_, Nov 26 2006