A153144 Numbers n such that 2*n+19 is not a prime.
1, 3, 4, 7, 8, 10, 13, 15, 16, 18, 19, 22, 23, 25, 28, 29, 31, 33, 34, 36, 37, 38, 40, 43, 46, 48, 49, 50, 51, 52, 53, 55, 57, 58, 61, 62, 63, 64, 67, 68, 70, 71, 73, 75, 76, 78, 79, 82, 83, 84, 85, 88, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Magma
[n: n in [1..120] | not IsPrime(2*n + 19)]; // Vincenzo Librandi, Dec 13 2012
-
Mathematica
Select[Range[0, 500], !PrimeQ[2# + 19] &] (* Vincenzo Librandi, Dec 13 2012 *)