A181868 a(1) = 10, a(2) = 1. For n >= 3, a(n) = concatenate a(n-1), a(n-2), ..., a(1) and then divide the resulting number by a(n-1).
10, 1, 110, 1001, 1000110, 10000001001, 100000000001000110, 10000000000000000010000001001, 10000000000000000000000000000100000000001000110, 1000000000000000000000000000000000000000000000010000000000000000010000001001
Offset: 1
Programs
-
Maple
#A181868 M:=10: a:=array(1..M):s:=array(1..M): a[1]:=10:a[2]:=1: s[1]:=convert(a[1],string): s[2]:=cat(convert(a[2],string),s[1]): for n from 3 to M do a[n] := parse(s[n-1])/a[n-1]; s[n]:= cat(convert(a[n],string),s[n-1]); end do: seq(a[n],n = 1..M);
Comments