login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A105773
Numbers n such that 11*n + 97 is prime.
3
0, 6, 12, 14, 20, 26, 32, 50, 54, 60, 66, 74, 80, 84, 90, 92, 96, 110, 116, 122, 126, 132, 134, 140, 150, 162, 164, 174, 182, 186, 200, 204, 216, 222, 234, 236, 246, 260, 264, 266, 270, 272, 284, 294, 306, 312, 320, 330, 336, 344, 350
OFFSET
1,2
LINKS
EXAMPLE
If n=0, then 11*0 + 97 = 97 (prime).
If n=90, then 11*90 + 97 = 1087 (prime).
MATHEMATICA
Select[Range[0, 350], PrimeQ[(11*# + 97)] &] (* Stefan Steinerberger, Mar 03 2006 *)
PROG
(PARI) is(n)=isprime(11*n+97) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Sequence in context: A315608 A315609 A315610 * A315611 A315612 A315613
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, May 04 2005
EXTENSIONS
More terms from Stefan Steinerberger, Mar 03 2006
STATUS
approved