A202110 Numbers n such that 90*n + 7 is prime.
0, 1, 3, 4, 5, 6, 8, 10, 11, 12, 16, 18, 22, 26, 27, 29, 30, 31, 32, 34, 39, 40, 41, 43, 44, 45, 48, 50, 51, 55, 58, 60, 65, 67, 69, 71, 73, 78, 80, 81, 83, 88, 89, 92, 93, 94, 96, 97, 100, 102, 103, 106, 109, 110, 113, 114, 115, 118, 122, 125, 127, 128, 129
Offset: 1
Crossrefs
Programs
-
Mathematica
Select[Range[0, 200], PrimeQ[90 # + 7] &]
-
PARI
is(n)=isprime(90*n+7) \\ Charles R Greathouse IV, Feb 17 2017
Comments