A118117 Concatenate n F(n) times.
1, 2, 33, 444, 55555, 66666666, 7777777777777, 888888888888888888888, 9999999999999999999999999999999999, 10101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010
Offset: 1
Examples
a(6) = 6 concatenated F(6) times = 6 concatenated 8 times = 66666666, where F(n) = the n-th Fibonacci number.
References
- F. Smarandache, "Properties of the numbers", Univ. of Craiova Archives, 1975; Arizona State University Special Collections, Tempe, AZ.
Programs
-
Mathematica
Table[FromDigits[Flatten[IntegerDigits/@PadRight[{},Fibonacci[n],n]]],{n,10}] (* Harvey P. Dale, Aug 09 2020 *)
Comments