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.

A029466 Numbers k that divide the (right) concatenation of all numbers <= k written in base 21 (most significant digit on left).

Original entry on oeis.org

1, 3, 5, 7, 15, 21, 25, 35, 45, 48, 49, 63, 75, 79, 80, 105, 112, 144, 147, 175, 203, 225, 240, 245, 295, 315, 327, 336, 369, 400, 441, 525, 560, 675, 720, 735, 784, 805, 945, 1008, 1029, 1113, 1200, 1225, 1267, 1323, 1392, 1575, 1680, 1715, 1953, 2043
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    b = 21; c = {}; Select[Range[10^5], Divisible[FromDigits[c = Join[c, IntegerDigits[#, b]], b], #] &] (* Robert Price, Mar 11 2020 *)