OFFSET
1,1
COMMENTS
A prime (like 271) occurring more than once ought be rare. It requires four primes to be linked by two congruences. The sequence of the 2nd smallest primes of the form is 53, 173, 733, 557, 2767, 5147, 4159, 12899, 6229, ... The list of 3rd smallest primes is 83, 313, 887, 1129, 3209, 8377, 6781, 16901, ... - R. J. Mathar, Sep 02 2007
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..1000
EXAMPLE
For n = 3, prime(3,4,5) = (5,7,11), we have 38*7+5 = 24*11+7 = 271, a prime, with (k,j) = (38,24).
MAPLE
A129918 := proc(n) local p, q, r, m ; p := ithprime(n) ; q := nextprime(p) ; r := nextprime(q) ; m := chrem([p, q], [q, r]) ; while not isprime(m) do m := m+ r*q ; od ; RETURN(m) ; end: seq(A129918(n), n=1..40) ; # R. J. Mathar, Sep 02 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot, Jun 05 2007
EXTENSIONS
Edited by R. J. Mathar, Sep 02 2007
STATUS
approved