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

A127590
Numbers n such that 16n+5 is prime.
8
0, 2, 3, 6, 9, 11, 12, 14, 17, 18, 23, 24, 26, 38, 41, 42, 44, 47, 48, 51, 53, 62, 63, 66, 68, 69, 77, 81, 86, 89, 93, 101, 102, 104, 108, 116, 117, 123, 128, 129, 138, 143, 144, 146, 147, 149, 152, 159, 167, 168, 171, 174, 177, 182, 191, 194
OFFSET
1,2
LINKS
MATHEMATICA
a = {}; Do[If[PrimeQ[16n + 5], AppendTo[a, n]], {n, 0, 200}]; a
Select[Range[0, 200], PrimeQ[16#+5]&] (* Harvey P. Dale, Aug 31 2020 *)
PROG
(PARI) is(n)=isprime(16*n+5) \\ Charles R Greathouse IV, Feb 17 2017
KEYWORD
nonn
AUTHOR
Artur Jasinski, Jan 19 2007
STATUS
approved