A111175 Numbers n such that 30*n + 1 is prime.
1, 2, 5, 6, 7, 8, 9, 11, 14, 18, 19, 20, 21, 22, 23, 25, 27, 33, 34, 35, 39, 40, 41, 43, 44, 46, 49, 51, 54, 58, 60, 61, 62, 65, 67, 71, 72, 74, 75, 76, 77, 78, 79, 84, 85, 89, 91, 93, 95, 99, 100, 102, 104, 106, 109, 110, 111, 112, 113, 117, 118, 119, 121, 123, 131, 134, 135
Offset: 1
Keywords
Examples
If n=99 then 30*n + 1 = 2971 (prime).
Programs
-
PARI
is(n)=isprime(30*n+1) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
Extended by Ray Chandler, Apr 07 2009
Comments