A029513 Numbers n such that n divides the (right) concatenation of all numbers <= n written in base 20 (most significant digit on right).
1, 2, 4, 5, 6, 10, 12, 14, 18, 19, 53, 703, 1824, 2185, 2546, 5054, 6594, 9841, 1393056, 1648110, 1984492, 2648114, 3430811, 8070122
Offset: 1
Examples
See A029495 for example.
Crossrefs
Programs
-
Mathematica
b = 20; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[c, Reverse[IntegerDigits[#, b]]], b], #] &] (* Robert Price, Mar 13 2020 *)
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(19)-a(24) from Lars Blomberg, Oct 14 2011
Comments