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!)
A143726 Middle members of beastly cousin prime triples: primes p such that both p+666 and p-666 are prime. 1

%I #16 May 26 2022 09:04:09

%S 733,773,823,857,877,947,997,1033,1087,1123,1213,1223,1283,1307,1327,

%T 1423,1487,1607,1993,2027,2137,2153,2237,2273,2287,2333,2543,2663,

%U 2677,2693,2797,2803,2917,3187,3257,3323,3407,3433,3463,3467,3593,3623,3847

%N Middle members of beastly cousin prime triples: primes p such that both p+666 and p-666 are prime.

%H Felix Fröhlich, <a href="/A143726/b143726.txt">Table of n, a(n) for n = 1..10000</a>

%e 733 - 666 = 67, 733 + 666 = 1399 and 67, 733, 1399 are all prime, so 733 is a term of the sequence. - _Felix Fröhlich_, May 26 2022

%t lst={};b=666;Do[p=Prime[n];If[PrimeQ[p+b]&&PrimeQ[p-b],AppendTo[lst,p]],{n,5!+2,7!}];lst

%t Select[Prime[Range[122,600]],AllTrue[#+{666,-666},PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* _Harvey P. Dale_, Apr 08 2018 *)

%o (PARI) forprime(p=1, 3900, if(ispseudoprime(p+666) && ispseudoprime(p-666), print1(p, ", "))) \\ _Felix Fröhlich_, May 26 2022

%Y Cf. A007529 (p, p+2 or +4, p+6 prime), A023200 (p and p+4 prime), A046132 (p-4 and p prime), A073648 (p-2, p and p+4 prime).

%K nonn

%O 1,1

%A _Vladimir Joseph Stephan Orlovsky_, Aug 30 2008

%E Name edited by _Felix Fröhlich_, May 26 2022

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 July 7 03:38 EDT 2024. Contains 374062 sequences. (Running on oeis4.)