OFFSET
1,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
Distribution of the terms in the following triangular array:
*;
*,*;
1,*,*;
*,*,*,*;
*,*,*,*,*,;
*,*,*,7,*,*;
*,*,*,*,10,*,*;
*,5,*,*,*,*,*,*;
*,*,8,*,*,*,*,*,*;
*,*,*,*,*,*,*,22,*,*;
4,*,*,*,*,*,*,*,27*,*;
*,*,*,*,*,20,*,*,*,*,*,*;
*,*,*,*,*,*,25,*,*,*,*,*,*; etc.
where * marks the non-integer values of (2*h*k + k + h - 2)/8 with h >= k >= 1. - Vincenzo Librandi, Jan 17 2013
MATHEMATICA
Select[Range[100], !PrimeQ[16# + 5]&] (* Harvey P. Dale, Oct 03 2011 *)
PROG
(Magma) [n: n in [0..150] | not IsPrime(16*n + 5)]; // Vincenzo Librandi, Jan 12 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 23 2008
STATUS
approved