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

A108030
Numbers k such that 151*k + 149 is prime.
3
0, 20, 30, 42, 44, 50, 60, 62, 78, 98, 102, 110, 120, 128, 144, 158, 162, 170, 174, 180, 182, 188, 194, 198, 210, 240, 242, 252, 258, 260, 264, 272, 294, 302, 314, 348, 350, 368, 380, 392, 404, 408, 432, 450, 462, 470, 482, 492, 498
OFFSET
1,2
COMMENTS
149 and 151 are twin primes.
LINKS
EXAMPLE
If k=98 then 151*k + 149 = 14947 (prime).
MATHEMATICA
Select[Range[0, 500], PrimeQ[151*# + 149] &] (* Stefan Steinerberger, Mar 03 2006 *)
PROG
(PARI) is(n)=isprime(151*n+149) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Sequence in context: A216603 A166730 A109944 * A095787 A198471 A120145
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, May 31 2005
EXTENSIONS
More terms from Stefan Steinerberger, Mar 03 2006
STATUS
approved