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”).

A102686
Numbers k such that 11*k + 3 is prime, k >= 0.
1
0, 4, 10, 14, 16, 20, 28, 38, 40, 44, 46, 56, 58, 68, 70, 76, 80, 88, 100, 110, 116, 118, 124, 130, 136, 140, 146, 154, 158, 170, 184, 194, 200, 206, 214, 220, 224, 238, 244, 248, 250, 254, 256, 278, 280, 296, 304, 308, 310, 314, 334, 350, 356, 364, 368, 370
OFFSET
1,2
LINKS
EXAMPLE
At k=0, 11*0 + 3 = 3 (prime).
At k=44, 11*44 + 3 = 487 (prime).
At k=110, 11*110 + 3 = 1213 (prime).
MATHEMATICA
Select[ Range[0, 375, 2], PrimeQ[11# + 3] &] (* Robert G. Wilson v, Feb 12 2005 *)
PROG
(PARI) is(n)=isprime(11*n+3) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A310360 A114719 A116954 * A359171 A310361 A310362
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Feb 03 2005
EXTENSIONS
More terms from Robert G. Wilson v, Feb 12 2005
STATUS
approved