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!)
A023241 Primes that remain prime through 2 iterations of function f(x) = x + 6. 10

%I #37 Sep 08 2022 08:44:47

%S 5,7,11,17,31,41,47,61,67,97,101,151,167,227,251,257,271,347,367,557,

%T 587,601,607,641,647,727,941,971,1091,1097,1117,1181,1217,1277,1291,

%U 1361,1427,1447,1481,1487,1601,1607,1657,1741,1747,1777,1861,1867,1901,1987

%N Primes that remain prime through 2 iterations of function f(x) = x + 6.

%C Primes p such that p+6 and p+12 are also primes.

%H Lei Zhou, <a href="/A023241/b023241.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PrimeTriplet.html">Prime Triplet</a>

%t triq[p_] := And[PrimeQ[p + 6], PrimeQ[p + 12]]; Select[Prime[Range[1000]], triq] (* _Ben Branman_, Sep 03 2012 *)

%t nrpQ[n_]:=AllTrue[Rest[NestList[#+6&,n,2]],PrimeQ]; Select[Prime[Range[ 300]],nrpQ] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, Jan 27 2021 *)

%o (Magma) [n: n in [0..1000] | IsPrime(n) and IsPrime(n+6) and IsPrime(n+12)] // _Vincenzo Librandi_, Nov 20 2010

%K nonn

%O 1,1

%A _David W. Wilson_

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 18 04:56 EDT 2024. Contains 371767 sequences. (Running on oeis4.)