OFFSET
1,1
COMMENTS
In reversing a number, leading zeros are erased.
This is the lexicographically earliest sequence of distinct positive terms with this property.
EXAMPLE
a(1) = 10, which reversed is 1 (leading zeros are erased); 10/1 leaves a remainder 0, which is present in a(1);
a(2) = 20, which reversed is 2 (leading zeros are erased); 20/2 leaves a remainder 0, which is present in a(2);
a(3) = 25, which reversed is 52; 52/25 leaves a remainder 2, which is present in a(3);
...
a(50) = 831, which reversed is 138; 831/138 leaves a remainder 3, which is present in a(50); etc.
MATHEMATICA
lst={}; k=1; Do[While[!StringContainsQ[ToString@k, ToString@Mod[#2, #]&@@(Sort@{k, IntegerReverse@k})], k++]; AppendTo[lst, k]; k++, {n, 61}]; lst (* Giorgos Kalogeropoulos, May 08 2022 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Eric Angelini and Carole Dubois, Mar 01 2021
STATUS
approved