OFFSET
1,2
COMMENTS
1 divided by 1 (the first digit of "10") leaves 0 (the last digit of "10").
10 divided by 2 (the first digit of "20") leaves 0 (the last digit of "20")
20 divided by 3 (the first digit of "32") leaves 2 (the last digit of "32")
32 divided by 4 (the first digit of "40") leaves 0 (the last digit of "40")
40 divided by 3 (the first digit of "31") leaves 1 (the last digit of "31")
LINKS
Eric Angelini, Table of n, a(n) for n = 1..10000
MATHEMATICA
S = {1}; Do[k = 10; While[Or[MemberQ[S, k], Mod[S[[n]], First@ #] != Last@ # &@ IntegerDigits@ k], k++]; AppendTo[S, k], {n, 73}]; S (* Michael De Vlieger, Jun 08 2016 *)
CROSSREFS
KEYWORD
AUTHOR
Eric Angelini and Hans Havermann, Jun 08 2016
STATUS
approved