A259528 n-th number with exactly n n's in base 10.
1, 122, 2333, 34444, 455555, 5666666, 67777777, 788888888, 8999999999, 101010101010101010010, 11111111110111111111111, 1212121121212121212121212, 131313013131313131313131313, 14141241414141414141414141414
Offset: 1
Examples
First element is 1, the 1st natural number with exactly one 1 in base 10. Second element is 122, the 2nd natural number with exactly two 2's in base 10. Third element is 2333, the 3rd natural number with exactly three 3's in base 10.
Programs
-
PARI
a(n)=my(v=List(),k=10^#Str(n),d=List(digits((k^n-1)/(k-1)*n)),t); for(i=1,#d+1, t=d; listinsert(t,0,i); t=Vec(t); for(j=0,9, t[i]=j; listput(v,fromdigits(t)))); Set(v)[n] \\ Charles R Greathouse IV, Jun 29 2015
Extensions
a(5)-a(14) from Charles R Greathouse IV, Jun 29 2015
Comments