OFFSET
1,2
COMMENTS
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
Divisors(24) = [1,2,3,4,6,8,12,24] --> [1,12,2,24,3,4,6,8],
therefore a(24) = 8;
divisors(42) = [1,2,3,6,7,14,21,42] --> [1,14,2,21,3,42,6,7],
therefore a(42) = 7.
PROG
(Haskell)
import import Data.List (maximumBy); Data.Ord (comparing)
a122425 = maximumBy (comparing show) . a027750_row
-- Reinhard Zumkeller, Feb 05 2015, Sep 15 2011
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 04 2006
STATUS
approved