login
A080479
Smallest number formed by using all the digits (with multiplicity) of next n numbers.
6
1, 23, 456, 10789, 1111112345, 101111226789, 22222222345678, 1022333333334569, 102333344444445789, 10234444455555556789, 1023455555666666666789, 102345666677777777777889, 10012345677888888888889999, 1000000011111122334455678999999999
OFFSET
1,2
PROG
(Python)
def a(n):
s = "".join(sorted("".join(map(str, range((n-1)*n//2+1, n*(n+1)//2+1)))))
if '0' not in s: return int(s)
rz = s.rfind('0')
return int(s[rz+1] + s[:rz+1] + s[rz+2:])
print([a(n) for n in range(1, 15)]) # Michael S. Branicky, Jan 23 2021
CROSSREFS
Cf. A053067 (next n concatenated), A080480 (largest).
Sequence in context: A066547 A001369 A007923 * A053067 A036906 A134733
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Mar 11 2003
EXTENSIONS
More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 19 2003
STATUS
approved