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

A108029
Numbers n such that 149*k + 151 is prime.
3
0, 2, 14, 18, 24, 30, 32, 38, 60, 74, 80, 92, 98, 102, 104, 114, 122, 132, 134, 140, 150, 168, 188, 192, 218, 228, 230, 240, 242, 252, 254, 258, 260, 282, 284, 288, 300, 312, 318, 338, 342, 344, 350, 360, 368, 372, 378, 384, 398, 408, 414, 420, 422, 434, 438
OFFSET
1,2
COMMENTS
149 and 151 are twin primes.
LINKS
EXAMPLE
If k=74, then 149*k + 151 = 11177 (prime).
MATHEMATICA
Select[Range[0, 500], PrimeQ[149*# + 151] &] (* Stefan Steinerberger, Mar 03 2006 *)
PROG
(PARI) is(n)=isprime(149*n+151) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Sequence in context: A096508 A374584 A355169 * A212048 A322955 A266388
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, May 31 2005
EXTENSIONS
More terms from Stefan Steinerberger, Mar 03 2006
STATUS
approved