A061953 Numbers n such that n divides the (right) concatenation of all numbers <= n written in base 24 (most significant digit on right, least significant zeros not written).
1, 2, 3, 4, 6, 8, 10, 12, 20, 23, 100, 115, 116, 299, 575, 2660, 3726, 5858, 7282, 7452, 95610, 128349, 259681, 266411, 2853820, 2974820
Offset: 1
Examples
See A061931 for example.
Crossrefs
Programs
-
Mathematica
b = 24; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[c, IntegerDigits[IntegerReverse[#, b], b]], b], #] &] (* Robert Price, Mar 08 2020 *)
Extensions
Edited and updated by Larry Reeves (larryr(AT)acm.org), Apr 12 2002
a(25)-a(26) from Lars Blomberg, Oct 27 2011
Comments