login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A078191
a(n) = concatenation of n n times divided by n.
0
1, 11, 111, 1111, 11111, 111111, 1111111, 11111111, 111111111, 1010101010101010101, 101010101010101010101, 10101010101010101010101, 1010101010101010101010101, 101010101010101010101010101
OFFSET
1,2
MAPLE
seq(seq(sum(10^((l+1)*(j-1)), j=1..i), i=10^l..10^(l+1)-1), l=0..1);
MATHEMATICA
Table[FromDigits[Flatten[IntegerDigits/@Table[n, n]]]/n, {n, 20}] (* Harvey P. Dale, May 12 2017 *)
CROSSREFS
Sequence in context: A002275 A294348 A078998 * A097115 A346789 A134732
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 21 2002
EXTENSIONS
More terms from Sascha Kurz, Jan 04 2003
STATUS
approved