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.

A262572 Concatenation of the numbers from 1 to n but omitting 2.

Original entry on oeis.org

1, 13, 134, 1345, 13456, 134567, 1345678, 13456789, 1345678910, 134567891011, 13456789101112, 1345678910111213, 134567891011121314, 13456789101112131415, 1345678910111213141516, 134567891011121314151617, 13456789101112131415161718, 1345678910111213141516171819, 134567891011121314151617181920
Offset: 1

Views

Author

N. J. A. Sloane, Sep 25 2015

Keywords

Crossrefs

For primes see A262298.
See A262300 for more about this problem.

Programs

  • Mathematica
    DeleteDuplicates[Table[FromDigits[Flatten[IntegerDigits[Complement[Range[n], {2}]]]], {n, 20}]] (* Robert Price, Nov 05 2018 *)