OFFSET
1,1
REFERENCES
J. Earls, On Smarandache Repunit N Numbers, Smarandache Notions Journal, Journal (2004), Vol. 14.1, pp 251-258.
FORMULA
a(n) = (10^n-1)/9*10^L + n, where L is the number of decimal digits of n.
MATHEMATICA
Array[(10^# - 1)/9*10^IntegerLength[#] + # &, 16] (* or *)
Array[FromDigits[ConstantArray[1, #]~Join~IntegerDigits[#]] &, 16] (* Michael De Vlieger, Mar 21 2018 *)
CROSSREFS
KEYWORD
base,easy,nonn,less
AUTHOR
Jason Earls, Oct 15 2002
STATUS
approved