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!)
A084958 Initial prime of a prime chain of length n under the iteration x->5x+2. 7
2, 3, 13, 19, 373, 135859, 135859, 18235423, 26588257, 93112729, 376038903103, 7087694466289, 120223669028389 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This is a special case of prime chains generated by f(x) = cx + d.
a(11) > 8695354111. - Donovan Johnson, Sep 27 2008
LINKS
D. H. Lehmer, On certain chains of primes, Proc. London Math. Soc. (3) 14a 1965 183-186.
EXAMPLE
a(3)=13 since 13, f(13)=67 and f(67)=337 are primes when f(x) = 5x+2.
MATHEMATICA
c[p_] := Block[{k = 1, q = 5*p+2}, While[ PrimeQ[q], q = 5*q+2; k++]; k]; a[n_] := Block[{p = 2}, While[c[p] < n, p = NextPrime@ p]; p]; Array[a, 7] (* Giovanni Resta, Mar 21 2017 *)
CROSSREFS
Sequence in context: A135118 A274905 A234366 * A249573 A295111 A229117
KEYWORD
more,nonn
AUTHOR
W. Edwin Clark, Jun 14 2003
EXTENSIONS
a(10) from Donovan Johnson, Sep 27 2008
a(11)-a(12) from John Cerkan, Jan 20 2017
a(13) from Giovanni Resta, Mar 21 2017
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 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)