OFFSET
1,2
COMMENTS
97 is the largest two-digit prime and 101 is the smallest three-digit prime.
LINKS
Daniel Starodubtsev, Table of n, a(n) for n = 1..10000
EXAMPLE
If k=6, then 97*6 + 101 = 683 (prime).
If k=8, then 97*8 + 101 = 877 (prime).
If k=14, then 97*14 + 101 = 1459 (prime).
PROG
(Magma) [ n: n in [0..600] | IsPrime(97*n+101) ]; // Vincenzo Librandi, Feb 04 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Jan 21 2005
EXTENSIONS
Extended by Ray Chandler, Jan 25 2005
STATUS
approved