A202114 Numbers n such that 90n + 53 is prime.
0, 2, 5, 6, 7, 8, 9, 10, 13, 16, 17, 24, 26, 29, 30, 31, 33, 35, 42, 43, 44, 47, 48, 49, 51, 52, 55, 58, 64, 65, 68, 69, 70, 75, 77, 80, 82, 83, 85, 86, 87, 91, 93, 94, 96, 97, 99, 103, 104, 112, 113, 114, 120, 124, 126, 127, 132, 134, 135, 138, 140, 141
Offset: 1
Crossrefs
Programs
-
Mathematica
Select[Range[0, 200], PrimeQ[90 # + 53] &]
-
PARI
is(n)=isprime(90*n+53) \\ Charles R Greathouse IV, Feb 20 2017
Comments