OFFSET
1,2
COMMENTS
All terms must be even. - Harvey P. Dale, Jan 05 2019
LINKS
Daniel Starodubtsev, Table of n, a(n) for n = 1..10000
EXAMPLE
If n=0, then 11*n + 19 = 19 (prime).
If n=48, then 11*n + 19 = 547 (prime).
MAPLE
a:=proc(n) if isprime(11*n+19)=true then n else fi end: seq(a(n), n=0..400); # Emeric Deutsch, Jul 04 2005
MATHEMATICA
Select[Range[0, 400, 2], PrimeQ[ 11#+19]&] (* Harvey P. Dale, Jan 05 2019 *)
PROG
(PARI) is(n)=isprime(11*n+19) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Jun 21 2005
EXTENSIONS
More terms from Emeric Deutsch, Jul 04 2005
STATUS
approved