A181756 a(1) = 1, a(2) = 10. For n >= 3, a(n) is found by concatenating the first n-1 terms of the sequence and then dividing the resulting number by a(n-1).
1, 10, 11, 1001, 110001, 1001000001, 1100010000000001, 10010000010000000000000001, 110001000000000100000000000000000000000001, 10010000010000000000000001000000000000000000000000000000000000000001
Offset: 1
Crossrefs
Programs
-
Maple
#A181756 M:=10: a:=array(1..M):s:=array(1..M): a[1]:=1:a[2]:=10: s[1]:=convert(a[1],string): s[2]:=cat(s[1],convert(a[2],string)): for n from 3 to M do a[n] := parse(s[n-1])/a[n-1]; s[n]:= cat(s[n-1],convert(a[n],string)); end do: seq(a[n],n = 1..M);
Formula
DEFINITION
a(1) = 1, a(2) = 10, and for n >= 3
(1)... a(n) = concatenate(a(1),a(2),...,a(n-1))/a(n-1).
RECURRENCE RELATION
For n >= 2
(2)... a(n+2) = 100^F(n)*a(n)+1,
where F(n) = A000045(n) are the Fibonacci numbers.
For n >= 2, a(n) has 2*F(n-1) digits.
Comments