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:
*;
*,2;
*,*,*;
*,*,*,10;
*,*,*,*,*;
4,*,*,*,*,*;
*,*,*,*,22,*,*;
*,*,*,*,*,30,*,*;
*,12,*,*,*,*,*,*,50;
*,*,*,*,*,*,*,*,*,*;
*,*,*,28,*,*,*,*,*,*,74;
*,*,*,*,*,*,52,*,*,*,*,*;
10,*,*,*,*,*,*,64,*,*,*,*,*; etc.
where * marks the non-integer values of (4*h*k + 2*k + 2*h - 10)/7 with h >= k >= 1. - Vincenzo Librandi, Jan 17 2013
MATHEMATICA
Select[Range[200], !PrimeQ[7 # + 11] &] (* Vincenzo Librandi, Jan 13 2013 *)
PROG
(PARI) isA153350(n)=!isprime(7*n+11)
(Magma) [n: n in [0..150] | not IsPrime(7*n+11)]; // _VIncenzo Librandi_, Jan 13 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 24 2008
EXTENSIONS
Corrected and edited by Michael B. Porter, Apr 20 2010
STATUS
approved