cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A236207 Numbers not divisible by 5 or 11.

Original entry on oeis.org

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

Views

Author

Oleg P. Kirillov, Jan 20 2014

Keywords

Crossrefs

Intersection of A047201 and A160542.

Programs

  • Mathematica
    Select[Range[100], Mod[#, 5] > 0 && Mod[#, 11] > 0 &] (* or *) Select[Range[100], Or @@ Divisible[#, {5, 11}] == False &] (* Bruno Berselli, Mar 24 2014 *)