OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
Distribution of the terms in the following triangular array:
*;
*,*;
*,*,*;
*,3,*,*;
*,*,*,*,*;
*,*,*,*,10,*;
3,*,*,*,*,*,*;
*,*,*,*,*,*,18,*;
*,*,*,12,*,*,*,*,*;
*,*,*,*,*,*,*,*,*,*;
*,8,*,*,*,*,*,*,31,*,*;
*,*,*,*,*,23,*,*,*,*,*;
*,*,*,*,21,*,*,*,*,*,*,48,*;etc.
where * marks the non-integer values of (2*h*k + k + h - 1)/7 with h >= k >= 1. - Vincenzo Librandi, Jan 17 2013
MATHEMATICA
Select[Range[0, 200], !PrimeQ[14*# + 3]&] (* Vincenzo Librandi, Jan 12 2013 *)
PROG
(Magma) [n: n in [0..150] | not IsPrime(14*n + 3)]; // Vincenzo Librandi, Jan 12 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 23 2008
STATUS
approved