A202113 Numbers n such that 90n + 61 is prime.
0, 1, 2, 3, 4, 6, 7, 11, 13, 14, 20, 21, 23, 24, 25, 29, 31, 34, 36, 37, 39, 43, 44, 45, 46, 50, 51, 53, 55, 56, 58, 62, 64, 67, 69, 70, 71, 77, 81, 84, 90, 93, 94, 99, 101, 102, 104, 105, 106, 108, 109, 112, 114, 116, 119, 120, 123, 125, 127, 132, 135, 136
Offset: 1
Crossrefs
Programs
-
Mathematica
Select[Range[0, 200], PrimeQ[90 # + 61] &]
-
PARI
is(n)=isprime(90*n+61) \\ Charles R Greathouse IV, Feb 17 2017
Comments