OFFSET
1,2
COMMENTS
All the numbers in this sequence are even. 97 is the largest two digit prime and 101 is the smallest three digit prime.
EXAMPLE
If n=240 then 101*n + 97 = 24337 (prime).
PROG
(Magma) [n: n in [0..1000000] |IsPrime(101*n+97)]; // Vincenzo Librandi, Nov 13 2010
(PARI) is(n)=isprime(101*n+97) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Nov 14 2005
STATUS
approved