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.

A079112 Numbers in binary representation with odd length.

Original entry on oeis.org

0, 1, 100, 101, 110, 111, 10000, 10001, 10010, 10011, 10100, 10101, 10110, 10111, 11000, 11001, 11010, 11011, 11100, 11101, 11110, 11111, 1000000, 1000001, 1000010, 1000011, 1000100, 1000101, 1000110, 1000111, 1001000, 1001001
Offset: 0

Views

Author

Reinhard Zumkeller, Dec 25 2002

Keywords

Comments

a(n) = A007088(A053738(n)).

Programs

  • Mathematica
    Join[{0},Select[FromDigits/@Tuples[{0,1},7],OddQ[IntegerLength[#]]&]] (* Harvey P. Dale, Sep 04 2021 *)