login
A061951
Numbers n such that n divides the (right) concatenation of all numbers <= n written in base 22 (most significant digit on right).
2
1, 2, 3, 6, 7, 9, 11, 14, 18, 21, 63, 101, 119, 134, 177, 196, 255, 318, 360, 483, 1092, 1953, 2793, 3453, 4302, 5445, 5687, 5955, 6027, 6077, 9483, 16521, 23026, 28095, 76139, 125199, 135082, 209601, 518238, 573590, 993891
OFFSET
1,2
COMMENTS
This sequence differs from A029515 in that all least significant zeros are removed before concatenation.
EXAMPLE
See A061931 for example.
MATHEMATICA
b = 22; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[c, IntegerDigits[IntegerReverse[#, b], b]], b], #] &] (* Robert Price, Mar 08 2020 *)
KEYWORD
nonn,base,more
AUTHOR
Larry Reeves (larryr(AT)acm.org), May 24 2001
EXTENSIONS
Edited and updated by Larry Reeves (larryr(AT)acm.org), Apr 12 2002
STATUS
approved