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

A108726
Numbers n such that 11*n + 29 is prime.
1
0, 4, 10, 18, 22, 24, 28, 30, 42, 48, 52, 64, 72, 78, 84, 88, 90, 94, 100, 102, 108, 114, 118, 130, 132, 144, 148, 154, 160, 162, 168, 178, 184, 192, 198, 202, 204, 210, 214, 238, 244, 252, 270, 280, 298, 300, 304, 312, 318, 322, 324, 328, 330, 340, 354, 358
OFFSET
1,2
COMMENTS
Two less than the associated entry in A102711.
LINKS
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
Cf. A108233.
Sequence in context: A310550 A310551 A310552 * A310553 A310554 A310555
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Jun 21 2005
EXTENSIONS
More terms from Emeric Deutsch, Jun 26 2005
STATUS
approved