A139528 Numbers n such that numbers 24n+11 are primes.
0, 2, 3, 4, 5, 7, 9, 10, 14, 17, 18, 19, 20, 23, 24, 27, 28, 34, 39, 40, 42, 45, 48, 49, 52, 53, 54, 59, 60, 62, 63, 65, 67, 69, 74, 75, 79, 80, 82, 83, 84, 87, 93, 94, 97, 100, 102, 105, 107, 112, 117, 118, 122, 123, 125, 128, 133, 135, 137, 138, 139, 140, 144, 145, 147
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[n: n in [0..150] |IsPrime(24*n+11)]; // Vincenzo Librandi, Apr 09 2013
-
Mathematica
a = {}; Do[If[PrimeQ[24 n + 11], AppendTo[a, n]], {n, 0, 200}]; a Select[Range[0,200],PrimeQ[24#+11]&] (* Harvey P. Dale, Apr 08 2013 *)