OFFSET
1,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
Distribution of the even terms in the following triangular array:
*;
*,*;
*,*,4;
2,*,*,*;
*,*,*,*,*;
*,*,*,*,*,*;
*,*,*,*,*,*,20;
*,*,*,*,*,*,*,*,;
*,*,*,*,*,22,*,*,*;
*,*,*,*,*,*,*,32,*,*;
*,10,*,*,*,*,*,*,*,*,*;
*,*,*,20,*,*,*,*,*,*,*,*;
*,*,*,*,*,*,*,*,*,*,56,*,*:
*,*,18,*,*,*,*,*,*,*,*,*,*,76;
8,*,*,*,*,*,*,*,*,*,*,70,*,*,*; etc.
where * marks the non-integer values of (4*h*k + 2*k + 2*h - 4)/11 with h >= k >= 1. - Vincenzo Librandi, Jan 17 2013
MATHEMATICA
Select[Range[0, 200], !PrimeQ[11 # + 5] &] (* Vincenzo Librandi, Jan 13 2013 *)
PROG
(Magma) [n: n in [0..150] | not IsPrime(11*n+5)]; // Vincenzo Librandi, Jan 13 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 25 2008
EXTENSIONS
Erroneous comment deleted by N. J. A. Sloane, Jun 23 2010
STATUS
approved