A158791 Numbers n such that 30*n + 23 is prime.
0, 1, 2, 3, 5, 7, 8, 9, 11, 12, 14, 16, 18, 19, 21, 22, 24, 25, 28, 31, 32, 33, 36, 38, 39, 40, 42, 45, 47, 49, 50, 51, 52, 53, 57, 60, 63, 65, 66, 68, 71, 73, 74, 75, 77, 79, 80, 84, 87, 88, 89, 91, 94, 96, 98, 100, 102, 106, 110, 113, 117, 119, 120, 126, 127, 128, 130, 133
Offset: 1
Keywords
Examples
Example: 3623, with LSD 3 and (SOD-1)/3 non-integer; Then 3623/30 = 120.766, or 120, which is in the sequence, thus 3623 is prime.
Programs
-
Mathematica
Select[Range[0,200],PrimeQ[30#+23]&] (* Harvey P. Dale, Jul 31 2014 *)
-
PARI
is(n)=isprime(30*n+23) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
Edited by Ray Chandler, Apr 07 2009
Comments