A166570 Numbers n such that 12*n+11 is not prime.
2, 7, 9, 11, 12, 16, 17, 22, 23, 24, 26, 27, 30, 32, 33, 37, 42, 43, 44, 45, 47, 50, 51, 52, 55, 57, 58, 60, 62, 63, 64, 65, 66, 67, 70, 72, 74, 76, 77, 79, 82, 83, 86, 87, 88, 89, 92, 93, 94, 97, 99, 100, 102, 103, 105, 107, 110, 111, 112, 114, 115, 116, 117, 121, 122
Offset: 1
Examples
Distribution of the terms in the following triangular array: *; *,*; *,2,*; *,*,*,*; *,*,*,*,*; *,*,*,*,11,*; *,*,*,*,*,*,*; *,*,9,*,*,*,*,*; *,7,*,*,*,*,*,26,*; *,*,*,*,*,*,*,*,*,*; *,*,*,*,*,24,*,*,*,*,*; *,*,*,*,22,*,*,*,*,*,47,*; etc. where * marks the non-integer values of (2*h*k + k + h - 5)/6 with h >= k >= 1. -
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A167057.
Programs
-
Magma
[n: n in [0..150] | not IsPrime(12*n+11)]; // Vincenzo Librandi, Jan 14 2013
-
Mathematica
Select[Range[0, 200], !PrimeQ[12 # + 11] &] (* Vincenzo Librandi, Jan 14 2013 *)