OFFSET
1,3
COMMENTS
List of decimal digits, alphabetically sorted by their names in Hungarian:
1 _ egy, 3 _ három, 6 _ hat, 7 _ hét, 2 _ kettő, 9 _ kilenc, 4 _ négy, 0 _ nulla, 8 _ nyolc, 5 _ öt.
a(127748) = A247806(1020) = 1367294085 is the greatest term not containing any repeating digits.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Wikipedia, Zahlen in unterschiedlichen Sprachen
Wikipedia, List of numbers in various languages
PROG
(Haskell)
import Data.IntSet (fromList, deleteFindMin, union)
a247756 n = a247756_list !! (n-1)
a247756_list = 0 : f (fromList [1..9]) where
f s = x : f (s' `union`
fromList (map (+ 10 * x) $ dropWhile (/= mod x 10) digs))
where (x, s') = deleteFindMin s
digs = [1, 3, 6, 7, 2, 9, 4, 0, 8, 5]
CROSSREFS
Cf. A247806 (subsequence).
KEYWORD
nonn,base,word,changed
AUTHOR
Reinhard Zumkeller, Oct 05 2014
STATUS
approved
