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

A202115
Numbers n such that 90n + 17 is prime.
4
0, 1, 2, 5, 6, 7, 9, 12, 13, 14, 15, 18, 21, 22, 23, 25, 26, 27, 32, 35, 36, 37, 39, 40, 42, 46, 48, 50, 53, 54, 55, 57, 58, 60, 61, 65, 67, 70, 76, 77, 79, 81, 83, 84, 86, 88, 90, 92, 93, 97, 98, 104, 105, 111, 116, 123, 124, 127, 130, 131, 132, 133, 137
OFFSET
1,3
LINKS
MAPLE
select(t -> isprime(90*t+17), [$0..1000]); # Robert Israel, Sep 02 2014
MATHEMATICA
Select[Range[0, 200], PrimeQ[90 # + 17] &]
PROG
(PARI) is(n)=isprime(90*n+17) \\ Charles R Greathouse IV, Feb 20 2017
KEYWORD
nonn,easy
AUTHOR
J. W. Helkenberg, Dec 11 2011
STATUS
approved