A097580 Base 3 representation of the concatenation of the first n numbers with the most significant digits first.
1, 110, 11120, 1200201, 121221020, 20021100110, 2022201111201, 212020020002100, 22121022020212200, 1011212101120110200001, 11101000122011021220211010, 121012010100112220022220220120
Offset: 1
Examples
The 4th concatenation of the integers > 0 is 1234. base(10,3,1234) = 1200201 the 4th entry in the table.
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..195
Programs
-
Mathematica
Table[FromDigits[IntegerDigits[FromDigits[Flatten[Table[ IntegerDigits[n],{n,i}]]],3]],{i,12}] (* Harvey P. Dale, May 23 2011 *)
Comments