login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A153381
Numbers n such that 11*n+5 is not prime.
1
1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 79, 80, 81, 83, 85, 86, 87, 88
OFFSET
1,2
LINKS
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
Cf. A108233.
Sequence in context: A098901 A098767 A333559 * A307750 A356734 A319630
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 25 2008
EXTENSIONS
Erroneous comment deleted by N. J. A. Sloane, Jun 23 2010
STATUS
approved