login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A029469
Numbers k that divide the (right) concatenation of all numbers <= k written in base 24 (most significant digit on left).
1
1, 2, 3, 4, 6, 8, 10, 12, 20, 23, 24, 32, 36, 46, 48, 62, 64, 69, 72, 86, 92, 96, 107, 138, 144, 174, 184, 192, 207, 246, 276, 288, 304, 368, 414, 529, 552, 576, 621, 736, 739, 759, 768, 828, 864, 947, 1044, 1058, 1104, 1136, 1152, 1224, 1242, 1472, 1536
OFFSET
1,2
LINKS
MATHEMATICA
b = 24; c = {}; Select[Range[10^5], Divisible[FromDigits[c = Join[c, IntegerDigits[#, b]], b], #] &] (* Robert Price, Mar 11 2020 *)
KEYWORD
nonn,base
STATUS
approved