OFFSET
1,2
COMMENTS
Complement of A034936. - Omar E. Pol, Jan 18 2009
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
Distribution of the odd terms in the following triangular array:
*;
*,7;
*,*,15;
*,*,*,*;
*,17.*,*,39;
*,*,29,*,*,55;
*,*, *,*,*,*, *;
*,27,*,*,61,*,*,95;
*,*,43,*,*,81,*,*,119;
*,*, *,*,*,*, *,*, *, *;
*,37,*,*,83,*,*,129,*,*,175;
*,*,57,*,*,107,*,*,157,*,*,207; etc.
where * marks the non-integer values of (4*h*k + 2*k + 2*h - 3)/3 with h >= k >= 1. - Vincenzo Librandi, Jan 17 2013
MATHEMATICA
Select[Range[0, 200], !PrimeQ[3*# + 4]&] (* Vincenzo Librandi, Jan 12 2013 *)
PROG
(Magma) [n: n in [0..150] | not IsPrime(3*n + 4)]; // Vincenzo Librandi, Jan 12 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 23 2008
EXTENSIONS
Edited (and terms confirmed) by N. J. A. Sloane, Jan 18 2009
STATUS
approved