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.

A361780 Numbers that have digits consisting only of line segments {1, 4, 7} or curved digits {0, 3, 6, 8, 9}.

Original entry on oeis.org

0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 19, 30, 31, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 46, 47, 48, 49, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 76, 77, 78, 79, 80, 81, 83, 84, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 108, 109, 110
Offset: 1

Views

Author

Bernard Schott, Mar 23 2023

Keywords

Comments

This sequence allows all digits except for 2 and 5.

Crossrefs

Cf. A028373 (line-segment digits: {1, 4, 7}), A072960 (curved digits: {0, 3, 6, 8, 9}), A072961 (both line segments and curves digits: {2, 5}).
Cf. A082741 (digits: {1, 2, 4, 5, 7}), A028374 (digits: {0, 2, 3, 5, 6, 8, 9}), this sequence (digits {0, 1, 3, 4, 6, 7, 8, 9}).

Programs

  • Mathematica
    Select[Range[0, 110], AllTrue[IntegerDigits[#], ! MemberQ[{2, 5}, #1] &] &] (* Amiram Eldar, Mar 24 2023 *)