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.

A029497 Numbers k such that k divides the (right) concatenation of all numbers <= k written in base 4 (most significant digit on right).

Original entry on oeis.org

1, 2, 3, 11, 207, 1239, 7947, 9233, 49883, 118669, 315629, 2640670
Offset: 1

Views

Author

Keywords

Comments

This sequence differs from A061933 in that all least significant zeros are kept during concatenation.
a(13) exceeds 10000000. - Sean A. Irvine, Sep 01 2009

Examples

			See A029495 for example.
		

Crossrefs

Programs

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

Extensions

Edited and updated by Larry Reeves (larryr(AT)acm.org), Apr 12 2002
Additional comments and more terms from Larry Reeves (larryr(AT)acm.org), May 25 2001
a(12) from Sean A. Irvine, Sep 01 2009