OFFSET
1,1
COMMENTS
No term can end with the digits 0 or 1 as those would produce a division by 0. This means that no term a(n) in the sequence is divisible by the last digit of a(n-1)
LINKS
Eric Angelini, Table of n, a(n) for n = 1..10000
EXAMPLE
3 divided by 2 leaves 1 (this "1" starts the next integer)
13 divided by 3 leaves 1 (this "1" starts the next integer)
14 divided by 3 leaves 2 (this "2" starts the next integer)
22 divided by 4 leaves 2 (this "2" starts the next integer)
23 divided by 2 leaves 1 (this "1" starts the next integer)
16 divided by 3 leaves 1 (this "1" starts the next integer)
15 divided by 6 leaves 3 (this "3" starts the next integer)
32 divided by 5 leaves 2 (this "2" starts the next integer)
25 divided by 2 leaves 1 (this "1" starts the next integer)
12 divided by 5 leaves 2 (this "2" starts the next integer)
27 divided by 2 leaves 1 (this "1" starts the next integer)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric Angelini and Jean-Marc Falcoz, Jun 16 2016
STATUS
approved