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!)
A105710 Numbers k such that 9973*k + 1009 is prime. 10

%I #20 Sep 08 2022 08:45:17

%S 0,28,36,70,76,78,106,124,136,168,184,198,208,216,226,234,238,246,258,

%T 294,300,304,318,348,364,366,370,394,418,436,454,468,474,496,556,570,

%U 588,598,604,616,660,688,696,714,736,738,744,748

%N Numbers k such that 9973*k + 1009 is prime.

%C 1009 and 9973 are the smallest and largest four-digit primes, respectively.

%C The theorem of Dirichlet shows that this sequence is infinite. - _Stefan Steinerberger_, Feb 12 2006

%e If k=0, then 9973*k + 1009 = 1009 (prime).

%e If k=168, then 9973*k + 1009 = 1676473 (prime).

%t For[n = 1, n < 1000, n++, If[PrimeQ[(9973*n + 1009)], Print[n]]] (* _Stefan Steinerberger_, Feb 12 2006 *)

%t Select[Range[0, 1000], PrimeQ[9973 # + 1009] &] (* _Vincenzo Librandi_, Sep 14 2015 *)

%o (Magma) [n: n in [0..800] | IsPrime(9973*n + 1009)]; // _Vincenzo Librandi_, Sep 14 2015

%o (PARI) is(n)=isprime(9973*n+1009) \\ _Charles R Greathouse IV_, Feb 17 2017

%Y Cf. A105679.

%K nonn,easy

%O 1,2

%A _Parthasarathy Nambi_, May 06 2005

%E More terms from _Stefan Steinerberger_, Feb 12 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 17:07 EDT 2024. Contains 372603 sequences. (Running on oeis4.)