OFFSET
1,1
COMMENTS
11 and 97 are the smallest and largest of two-digit primes.
LINKS
Daniel Starodubtsev, Table of n, a(n) for n = 1..10000
EXAMPLE
If k=6, then 97*k - 11 = 571 (prime).
If k=106, then 97*k - 11 = 10271 (prime).
MATHEMATICA
Select[Range[600], PrimeQ[97#-11]&] (* Harvey P. Dale, May 18 2021 *)
PROG
(Magma) [n: n in [1..100000] | IsPrime(97*n - 11)]; // Vincenzo Librandi, Nov 13 2010
(PARI) is(n)=isprime(97*n-11) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, May 13 2005
STATUS
approved