OFFSET
1,2
COMMENTS
Two less than the associated entry in A102711.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
If n=0, then 11*n + 29 = 29 (prime).
If n=48, then 11*n + 29 = 557 (prime).
MAPLE
a:=proc(n) if isprime(11*n+29)=true then n else fi end: seq(a(n), n=0..400); # Emeric Deutsch, Jun 26 2005
MATHEMATICA
Select[Range[0, 400], PrimeQ[11#+29]&] (* Harvey P. Dale, Jan 26 2013 *)
PROG
(PARI) is(n)=isprime(11*n+29) \\ Charles R Greathouse IV, Jun 12 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Jun 21 2005
EXTENSIONS
More terms from Emeric Deutsch, Jun 26 2005
STATUS
approved