A153053 Numbers j such that 2*j + 7 is not a prime.
1, 4, 7, 9, 10, 13, 14, 16, 19, 21, 22, 24, 25, 28, 29, 31, 34, 35, 37, 39, 40, 42, 43, 44, 46, 49, 52, 54, 55, 56, 57, 58, 59, 61, 63, 64, 67, 68, 69, 70, 73, 74, 76, 77, 79, 81, 82, 84, 85, 88, 89, 90, 91, 94, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 109, 112, 114, 115
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[n: n in [1..120] | not IsPrime(2*n + 7)]; // Vincenzo Librandi, Nov 21 2012
-
Mathematica
Select[Range[200], !PrimeQ[2# + 7] &] (* Vincenzo Librandi, Nov 21 2012 *)
-
PARI
for(n=1,200,isprime(2*n+7)||print1(n", ")) \\ M. F. Hasler, Jun 16 2010
Extensions
Checked and extended by M. F. Hasler, Jun 16 2010
Comments