A153384 Numbers n such that 24*n+1 is not prime.
0, 1, 2, 5, 6, 7, 9, 11, 12, 15, 16, 20, 21, 22, 23, 26, 27, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 44, 45, 46, 49, 51, 53, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 68, 70, 71, 72, 76, 77, 79, 80, 81, 82, 85, 86, 91, 92, 93, 94, 96, 97, 98, 100, 101, 102
Offset: 1
Examples
Triangle begins: *; *,1; *,*,2; *,*,*,*; *,*,*,*,5; *,*,*,*,*,7; *,*,*,*,*,*,*; *,*,*,*,*,*,*,12; *,*,*,*,*,*,*,*,15; *,*,*,*,*,*,*,*,*,*; *,*,*,*,*,*,*,*,*,*,22; etc. where * marks the non-integer values of (2*h*k + k + h)/12 with h >= k >= 1. - _Vincenzo Librandi_, Jan 14 2013
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[n: n in [0..150] | not IsPrime(24*n + 1)]; // Vincenzo Librandi, Jan 14 2013
-
Mathematica
Select[Range[0, 200], !PrimeQ[24 # + 1] &] (* Vincenzo Librandi, Jan 14 2013 *)
Extensions
0 added by Arkadiusz Wesolowski, Aug 03 2011
Comments