Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A057626 Initial prime in first sequence of n primes congruent to 2 modulo 5. 1

%I #14 Jan 07 2024 14:05:29

%S 2,337,1627,57427,192637,776257,15328637,70275277,244650317,452942827,

%T 452942827,73712513057,319931193737,2618698284817,10993283241587,

%U 54010894438097,101684513099627,196948379177587

%N Initial prime in first sequence of n primes congruent to 2 modulo 5.

%C Same as A068150 except a(1). - _Jens Kruse Andersen_, Jun 03 2006

%H J. K. Andersen, <a href="http://primerecords.dk/congruent-primes.htm">Consecutive Congruent Primes</a>.

%e a(5) = 192637 because this number is the first in a sequence of 5 consecutive primes all of the form 5n + 2.

%t NextPrime[ n_Integer ] := Module[ {k = n + 1}, While[ ! PrimeQ[ k ], k++ ]; Return[ k ] ]; PrevPrime[ n_Integer ] := Module[ {k = n - 1}, While[ ! PrimeQ[ k ], k-- ]; Return[ k ] ]; p = 0; Do[ a = Table[ -1, {n} ]; k = Max[ 1, p ]; While[ Union[ a ] != {2}, k = NextPrime[ k ]; a = Take[ AppendTo[ a, Mod[ k, 5 ] ], -n ] ]; p = NestList[ PrevPrime, k, n ]; Print[ p[ [ -2 ] ] ]; p = p[ [ -1 ] ], {n, 1, 9} ]

%t Module[{nn=13410000,pr5},pr5=Table[If[Mod[p,5]==2,1,0],{p,Prime[Range[nn]]}];Prime/@ Table[SequencePosition[pr5,PadRight[{},n,1],1],{n,8}]][[;;,1,1]] (* The program generates the first 8 terms of the sequence. *) (* _Harvey P. Dale_, Jan 07 2024 *)

%K nonn

%O 1,1

%A _Robert G. Wilson v_, Oct 09 2000

%E More terms from _Jens Kruse Andersen_, Jun 03 2006

%E a(15)-a(18) from _Giovanni Resta_, Aug 04 2013

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 August 2 17:23 EDT 2024. Contains 374848 sequences. (Running on oeis4.)