OFFSET
1,2
COMMENTS
A000461 Concatenate n n times.
REFERENCES
F. Smarandache, "Properties of the numbers", Univ. of Craiova Archives, 1975; Arizona State University Special Collections, Tempe, AZ.
EXAMPLE
a(6) = 6 concatenated F(6) times = 6 concatenated 8 times = 66666666, where F(n) = the n-th Fibonacci number.
MATHEMATICA
Table[FromDigits[Flatten[IntegerDigits/@PadRight[{}, Fibonacci[n], n]]], {n, 10}] (* Harvey P. Dale, Aug 09 2020 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Jonathan Vos Post, May 11 2006
STATUS
approved