login
A029517
Numbers n such that n divides the (right) concatenation of all numbers <= n written in base 24 (most significant digit on right).
1
1, 2, 3, 4, 6, 8, 10, 12, 20, 23, 3726, 4900, 5120, 7452, 8350, 59708, 483713, 1565449, 2048350, 2109790, 2968633, 4123900, 6745900, 6883670
OFFSET
1,2
COMMENTS
This sequence differs from A061953 in that all least significant zeros are kept during concatenation.
No more terms < 10^7. [Lars Blomberg, Oct 14 2011]
EXAMPLE
See A029495 for example.
MATHEMATICA
b = 24; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[c, Reverse[IntegerDigits[#, b]]], b], #] &] (* Robert Price, Mar 13 2020 *)
KEYWORD
nonn,base,more
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(17)-a(24) from Lars Blomberg, Oct 14 2011
STATUS
approved