OFFSET
1,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
Distribution of the terms > a(2) in the following triangular array:
*;
3,*;
*,*,*;
*,*,9,*;
*,8,*,*,*;
6,*,*,*,19,*;
*,*,*,18,*,*,*;
*,*,16,*,*,*,33,*;
*,13,*,*,*,32,*,*,*;
9,*,*,*,30,*,*,*,51,*;
*,*,*,27,*,*,*,50,*,*,*;
*,*,23,*,*,*,48,*,*,*,73,*;
*,18,*,*,*,45,*,*,*,72,*,*,*;
12,*,*,*,41,*,*,*,70,*,*,*,99,*; etc.
where * marks the non-integer values of (2*h*k + k + h + 5)/4 with h >= k >= 1. - Vincenzo Librandi, Jan 19 2013
MATHEMATICA
lst={}; Do[If[!PrimeQ[8*n-9], AppendTo[lst, n]], {n, 0, 500}]; lst (* Vincenzo Librandi, Jul 31 2012 *)
Select[Range[0, 100], !PrimeQ[8#-9]&] (* Harvey P. Dale, Jun 08 2015 *)
PROG
(Magma) [n: n in [0..100]| not IsPrime(8*n-9)]; // Vincenzo Librandi, Jul 31 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 01 2009
STATUS
approved