OFFSET
1,2
COMMENTS
Equivalently, numbers k whose decimal representation, read as a base-25 value and divided by k, yields an integer. - Jon E. Schoenfield, Oct 25 2019
MATHEMATICA
With[{b = 25}, Array[If[Mod[#2, #1] == 0, #1, Nothing] & @@ {#, FromDigits[IntegerDigits[#], b]} &, 10^6]] (* Michael De Vlieger, Oct 06 2019 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Apr 15 1998
EXTENSIONS
Name clarified and offset changed by Michael De Vlieger, Oct 06 2019
STATUS
approved