OFFSET
1,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
Distribution of the odd terms in the following triangular array:
1;
*,*;
*,*,*;
*,*,*,*;
*,*,*,*,17;
*,9,*,*,*,*;
*,*,*,19,*,*,*;
7,*,*,*,*,*,*,41;
*,*,*,*,*,35,*,*,*;
*,*,*,*,*,*,*,*,*,*;
*,*,*,*,*,*,49,*,*,*,*;
*,*,*,*,39,*,*,*,*,*,*,89;
*,19,*,*,*,*,*,*,73,*,*,*,*; etc.
where * marks the non-integer values of (4*h*k + 2*k + 2*h - 1)/7 with h >= k >= 1. - Vincenzo Librandi, Jan 17 2013
MATHEMATICA
Select[Range[200], !PrimeQ[7 # + 2] &] (* Vincenzo Librandi, Jan 13 2013 *)
PROG
(Magma) [n: n in [0..150] | not IsPrime(7*n + 2)]; // 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