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!)
A057618 Initial prime in first sequence of n primes congruent to 1 modulo 5. 2
11, 181, 4831, 22501, 216401, 2229971, 3873011, 36539311, 36539311, 196943081, 14293856441, 154351758091, 154351758091, 154351758091, 11992377039481, 41947964349971, 253931039382791, 253931039382791, 253931039382791 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(20) > 4*10^14. - Giovanni Resta, Aug 04 2013
REFERENCES
Carlos Rivera's The prime puzzles & problems connection, Puzzle 16 - Consecutive primes and ending digit
LINKS
EXAMPLE
a(6) = 2229971 because this number is the first in a sequence of 6 consecutive primes all of the form 5n + 1.
MATHEMATICA
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 ] != {1}, k = NextPrime[ k ]; a = Take[ AppendTo[ a, Mod[ k, 5 ] ], -n ] ]; p = NestList[ PrevPrime, k, n ]; Print[ p[ [ -2 ] ] ]; p = p[ [ -1 ] ], {n, 1, 10} ]
CROSSREFS
Cf. A054681.
Sequence in context: A321848 A112943 A258381 * A270663 A068648 A209351
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Oct 09 2000
EXTENSIONS
More terms from Jens Kruse Andersen, Jun 03 2006
a(15)-a(19) from Giovanni Resta, Aug 04 2013
STATUS
approved

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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)