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

A119409
Numbers n such that 235*n + 1 is prime.
0
4, 10, 16, 18, 22, 24, 28, 36, 42, 66, 70, 72, 88, 94, 102, 112, 120, 126, 148, 150, 154, 186, 190, 192, 196, 214, 232, 238, 240, 252, 256, 258, 268, 282, 286, 300, 318, 328, 330, 340, 352, 358, 366, 370, 372, 408, 412, 430, 436, 438, 450, 462, 472, 478, 490
OFFSET
1,1
EXAMPLE
If n=94 then 235*n + 1 = 22091 (prime).
MATHEMATICA
Select[Range[500], PrimeQ[235*# + 1] &] (* Stefan Steinerberger, Jul 26 2006 *)
PROG
(Magma) [ n: n in [0..500] | IsPrime(235*n + 1) ] // Vincenzo Librandi, Jan 31 2011
(PARI) is(n)=isprime(235*n+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A310473 A310474 A310475 * A310476 A310477 A109603
KEYWORD
nonn,less,easy
AUTHOR
Parthasarathy Nambi, Jul 26 2006
EXTENSIONS
More terms from Stefan Steinerberger, Jul 26 2006
STATUS
approved