OFFSET
1,1
COMMENTS
11 and 911 are primes.
EXAMPLE
If n=83 then 11*n - 911 = 2 (prime).
If n=122 then 11*n - 911 = 431 (prime).
MAPLE
a:=proc(n) if isprime(11*n-911)=true then n else fi end: seq(a(n), n=0..440); # Emeric Deutsch, Aug 03 2005
MATHEMATICA
Select[Range[83, 500], PrimeQ[11#-911]&] (* Harvey P. Dale, Apr 24 2022 *)
PROG
(PARI) is(n)=isprime(11*n-911) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Jul 25 2005
EXTENSIONS
More terms from Emeric Deutsch, Aug 03 2005
STATUS
approved