Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A236207
Numbers not divisible by 5 or 11.
2
1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 16, 17, 18, 19, 21, 23, 24, 26, 27, 28, 29, 31, 32, 34, 36, 37, 38, 39, 41, 42, 43, 46, 47, 48, 49, 51, 52, 53, 54, 56, 57, 58, 59, 61, 62, 63, 64, 67, 68, 69, 71, 72, 73, 74, 76, 78, 79, 81, 82, 83, 84, 86, 87, 89, 91, 92, 93, 94, 96, 97
OFFSET
1,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (2, -1, 0, 0, -1, 2, -1, 0, 0, -1, 2, -1, 0, 0, -1, 2, -1, 0, 0, -1, 2, -1, 0, 0, -1, 2, -1, 0, 0, -1, 2, -1, 0, 0, -1, 2, -1).
MATHEMATICA
Select[Range[100], Mod[#, 5] > 0 && Mod[#, 11] > 0 &] (* or *) Select[Range[100], Or @@ Divisible[#, {5, 11}] == False &] (* Bruno Berselli, Mar 24 2014 *)
CROSSREFS
Intersection of A047201 and A160542.
Sequence in context: A030706 A285986 A101883 * A375018 A225837 A035246
KEYWORD
nonn,easy
AUTHOR
Oleg P. Kirillov, Jan 20 2014
STATUS
approved