%I #71 Sep 08 2022 08:46:15
%S 0,1,10,110,110110,110110110110,110110110110110110110110,
%T 110110110110110110110110110110110110110110110110,
%U 110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110
%N a(0)=0, a(1)=1, a(2)=10; for n>2, a(n) = concat(a(1), ..., a(n-1)).
%C Decimal conversions: 0, 1, 2, 6, 54, 3510, 14380470, 241264265751990, 67909853583655146508751957430, ... . (See A267348.) - _Michael De Vlieger_, Jan 06 2016
%C After 10, a(n) is '110' repeated 2^(n-3) times. Therefore, for n>3, a(n) is the concatenation of a(n-1) with itself.
%C After 1, each term with the 0's omitted is a member of A136308.
%C The number of digits in a(n) is A098011(n+1).
%C The number of digits in a(n+2)/a(n+1) gives A103204 with 2 repeated.
%F a(n) = 110*(10^(3*2^(n-3))-1)/999 for n>2. - _Bruno Berselli_, Jan 29 2016
%e a(3) = concat(1, 10, 110) = 110110.
%e a(4) = concat(1, 10, 110, 110110) = 110110110110.
%t a = {0, 1}; Do[AppendTo[a, FromDigits@ Flatten@ Map[IntegerDigits@ # &, If[n < 2, Reverse@ a, a]]], {n, 8}]; a (* _Michael De Vlieger_, Jan 06 2016 *)
%o (Magma) [n le 2 select n*5^(n-1) else 110*(10^(3*2^(n-3))-1)/999: n in [0..8]]; // _Bruno Berselli_, Jan 29 2016
%Y Cf. A000079, A098011, A103204, A136308, A267348.
%K nonn,base,easy
%O 0,3
%A _Giovanni Teofilatto_, Jan 06 2016
%E Definition by _Michael De Vlieger_, Jan 06 2016
%E Edited by Editors of the OEIS, Jan 29 2016