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::
*;
*,*;
*,*,*;
*,*,*,*;
*,*,*,*,*;
*,*,*,*,*,*;
*,*,*,10,*,*,*;
*,*,*,*,14,*,*,*;
4,*,*,*,*,*,*,*,*;
*,*,*,*,*,*,*,*,*,*;
*,*,12,*,*,*,*,*,*,*,*;
*,*,*,*,*,*,*,*,*,40,*,*; etc.
where * marks the non-integer values of (4*h*k + 2*k + 2*h - 4)/13 with h >= k >= 1. - Vincenzo Librandi, Jan 15 2013
MATHEMATICA
Select[Range[0, 100], !PrimeQ[13 # + 5] &] (* Vincenzo Librandi, Oct 15 2012 *)
PROG
(Magma) [n: n in [0..90] | not IsPrime(13*n + 5)];
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 31 2009
STATUS
approved