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”).

A029512
Numbers n such that n divides the (right) concatenation of all numbers <= n written in base 19 (most significant digit on right).
2
1, 3, 9, 23, 24, 27, 40, 45, 72, 120, 135, 141, 145, 161, 243, 360, 520, 801, 1272, 1279, 1512, 2568, 2681, 3921, 4584, 7155, 8704, 12389, 22405, 27649, 32640, 34720, 40455, 62755, 65568, 89163, 120240, 125671, 144144, 193680, 204080, 241200
OFFSET
1,2
COMMENTS
This sequence differs from A061948 in that all least significant zeros are kept during concatenation.
LINKS
EXAMPLE
See A029495 for example.
MATHEMATICA
b = 19; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[c, Reverse[IntegerDigits[#, b]]], b], #] &] (* Robert Price, Mar 13 2020 *)
KEYWORD
nonn,base
EXTENSIONS
Additional comments and more terms from Larry Reeves (larryr(AT)acm.org), Jun 01 2001
STATUS
approved