A158859
a(n) is formed by 2n+1 concatenations of the digit 2r+1 where n=r (mod 5).
Original entry on oeis.org
1, 333, 55555, 7777777, 999999999, 11111111111, 3333333333333, 555555555555555, 77777777777777777, 9999999999999999999, 111111111111111111111, 33333333333333333333333
Offset: 0
A267327
a(n) = decimal expansion of (n-1) prepended n times to the decimal expansion of n (n > 0).
Original entry on oeis.org
1, 112, 2223, 33334, 444445, 5555556, 66666667, 777777778, 8888888889, 999999999910, 101010101010101010101011, 11111111111111111111111112, 1212121212121212121212121213, 131313131313131313131313131314, 14141414141414141414141414141415, 1515151515151515151515151515151516
Offset: 1
a(3) = 2223 ('3-1' prepended 3 times to '3').
-
Table[ FromDigits[ StringJoin@@ ToString/@ PadLeft[{n}, n+1, n-1]], {n, 50}](* Or *)
FromDigits/@ Table[ Nest[ ToString[n] <> #&, ToString[n+1], n+1], {n, 0, 50}]
Showing 1-2 of 2 results.
Comments