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

A111249
Numbers n such that 7*n + 8 is prime.
1
3, 5, 9, 15, 17, 27, 29, 33, 39, 47, 53, 59, 63, 65, 69, 77, 87, 89, 93, 95, 99, 105, 107, 117, 125, 129, 135, 137, 143, 149, 155, 165, 183, 185, 195, 203, 209, 213, 225, 227, 237, 243, 245, 267, 275, 285, 287, 297, 303, 305, 315, 323, 327, 329, 333, 339, 345
OFFSET
1,1
COMMENTS
One less than the associated entry in A024905.
EXAMPLE
If n=125 then 7*n + 8 = 883 (prime).
MAPLE
A111249:=n->`if`(isprime(7*n+8), n, NULL): seq(A111249(n), n=1..10^3); # Wesley Ivan Hurt, Feb 13 2017
MATHEMATICA
Select[Range[1, 351, 2], PrimeQ[7#+8]&] (* Harvey P. Dale, Sep 11 2016 *)
PROG
(Magma) [n: n in [0..100000] | IsPrime(7*n+8)] // Vincenzo Librandi, Nov 13 2010
(PARI) is(n)=isprime(7*n+8) \\ Charles R Greathouse IV, Feb 14 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Oct 31 2005
STATUS
approved