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!)
A045753 Numbers n such that 4n-1 and 4n+1 are both primes. 14

%I #23 Sep 08 2022 08:44:56

%S 1,3,15,18,27,45,48,57,60,78,87,105,108,150,165,207,255,258,273,288,

%T 330,357,363,372,402,405,417,447,468,483,507,522,528,567,585,648,672,

%U 678,750,780,792,813,825,840,843,867,882,885,918,942,963,1005,1023

%N Numbers n such that 4n-1 and 4n+1 are both primes.

%H Zak Seidov, <a href="/A045753/b045753.txt">Table of n, a(n) for n = 1..10000</a>

%e 3 belongs to the sequence because 4*3+1 and 4*3-1 are both primes.

%t Select[Range[1023], And @@ PrimeQ[{-1, 1} + 4# ] &] (* _Ray Chandler_, Dec 06 2006 *)

%o (Magma) [n: n in [1..2000] | IsPrime(4*n+1) and IsPrime(4*n-1)] // _Vincenzo Librandi_, Nov 18 2010

%o (PARI) list(lim)=my(v=List(),p=2); forprime(q=3,4*lim+1, if(q-p==2 && p%4==3, listput(v,q\4)); p=q); Vec(v) \\ _Charles R Greathouse IV_, Dec 03 2016

%Y Cf. A040040, A002822, A124065, A124518-A124522, A063983.

%K nonn,easy

%O 1,2

%A _Felice Russo_

%E More terms from _Erich Friedman_

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 June 11 05:33 EDT 2024. Contains 373289 sequences. (Running on oeis4.)