The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A115334 Numbers d > 0 such that 3+2d and 3+4d are primes. 9

%I #26 Jun 21 2022 06:31:30

%S 1,2,4,5,7,10,14,17,19,20,25,32,34,40,47,49,52,55,62,67,77,82,89,94,

%T 95,104,110,115,119,124,130,140,154,157,164,172,185,209,214,215,220,

%U 227,229,242,259,272,280,287,292,305,307,314,319,320,322,325,329,349,362

%N Numbers d > 0 such that 3+2d and 3+4d are primes.

%C Then { 3, 3+2d, 3+4d } is an arithmetic progression of primes. However, the next term, 3+6d = 3(1+2d), is clearly composite. - _Jeppe Stig Nielsen_, Jun 20 2022

%H Vincenzo Librandi, <a href="/A115334/b115334.txt">Table of n, a(n) for n = 1..1000</a>

%F a(n) = A206037(n)/2. - _Wesley Ivan Hurt_, Feb 06 2014

%e 5 is in the sequence because 3 + 2*5 = 13 and 3 + 4*5 = 23 are both prime.

%t Do[If[PrimeQ[{3+2d,3+4d}]=={True,True},Print[d]],{d,100000}]

%t Select[Range[400],And@@PrimeQ[{3+2#,3+4#}]&] (* _Harvey P. Dale_, Sep 02 2013 *)

%o (Magma) [ n: n in [1..365] | IsPrime(3+2*n) and IsPrime(3+4*n) ]; \\ _Klaus Brockhaus_, May 14 2009

%o (Python)

%o from sympy import isprime

%o from itertools import count, islice

%o def agen(): # generator of terms

%o yield from (d for d in count(1) if isprime(3+2*d) and isprime(3+4*d))

%o print(list(islice(agen(), 60))) # _Michael S. Branicky_, Jun 20 2022

%Y Cf. A160394. [_Klaus Brockhaus_, May 14 2009]

%K nonn

%O 1,2

%A _Zak Seidov_, Mar 06 2006

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 May 17 15:44 EDT 2024. Contains 372603 sequences. (Running on oeis4.)