OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
Distribution of the odd terms in the following triangular array:
*;
*,*;
*,*,*;
*,7,*,*;
*,*,*,*,*;
*,*,*,*,21,*;
7,*,*,*,*,*,*;
*,*,*,*,*,*,37,*;
*,*,*,25,*,*,*,*,*;
*,*,*,*,*,*,*,*,*,*;
*,17,*,*,*,*,*,*,63,*,*;
*,*,*,*,*,47,*,*,*,*,*,*;
*,*,*,*,43,*,*,*,*,*,*,97,*;
13,*,*,*,*,*,*,71,*,*,*,*,*,*; etc.
where * marks the non-integer values of (4*h*k + 2*k + 2*h + 5)/7 with h >= k >= 1. - Vincenzo Librandi, Jan 17 2013
MATHEMATICA
Select[Range[1, 200], !PrimeQ[7 # - 4]&] (* Vincenzo Librandi, Jan 13 2013 *)
PROG
(Magma) [n: n in [1..150] | not IsPrime(7*n-4)]; // Vincenzo Librandi, Jan 13 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 24 2008
EXTENSIONS
Erroneous comment deleted by N. J. A. Sloane, Jun 23 2010
STATUS
approved