login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A060554 String together the first n numbers in an order which maximizes the result. 3
1, 21, 321, 4321, 54321, 654321, 7654321, 87654321, 987654321, 98765432110, 9876543211110, 987654321211110, 98765432131211110, 9876543214131211110, 987654321514131211110, 98765432161514131211110 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Sean A. Irvine, Java program (github)
PROG
(Python)
from itertools import count, islice
def agen(): # generator of terms
slst = []
for n in count(1):
s, greatest, argreatest = str(n), "/", None
for i in range(len(slst)+1):
t = "".join(slst[:i]) + s + "".join(slst[i:])
if t > greatest: greatest, argreatest = t, i
slst.insert(argreatest, s)
yield int("".join(slst))
print(list(islice(agen(), 16))) # Michael S. Branicky, Nov 30 2022
CROSSREFS
Sequence in context: A138793 A014925 A000422 * A057610 A036737 A141267
KEYWORD
base,easy,nonn
AUTHOR
Henry Bottomley, Apr 02 2001
EXTENSIONS
Incorrect comment removed by Sean A. Irvine, Nov 30 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)