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!)
A247814 Numbers in decimal representation with distinct digits, such that in Turkish their digits are in alphabetic order. 17

%I #4 Oct 05 2014 19:22:27

%S 0,1,2,3,4,5,6,7,8,9,10,12,13,14,17,18,19,20,23,27,28,37,40,42,43,47,

%T 48,50,51,52,53,54,57,58,59,60,61,62,63,64,65,67,68,69,80,83,87,90,92,

%U 93,94,97,98,103,107,120,123,127,128,137,140,142,143,147

%N Numbers in decimal representation with distinct digits, such that in Turkish their digits are in alphabetic order.

%C List of decimal digits, alphabetically sorted by their names in Turkish:

%C 6 _ altı, 5 _ beş, 1 _ bir, 9 _ dokuz, 4 _ dört, 2 _ iki, 8 _ sekiz, 0 _ sıfır, 3 _ üç, 7 _ yedi;

%C finite sequence with last and largest term a(1020) = 6519428037.

%H Reinhard Zumkeller, <a href="/A247814/b247814.txt">Table of n, a(n) for n = 1..1020</a>

%H Wikipedia, <a href="http://de.wikipedia.org/wiki/Zahlen_in_unterschiedlichen_Sprachen#0_bis_10">Zahlen in unterschiedlichen Sprachen</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/List_of_numbers_in_various_languages">List of numbers in various languages</a>

%o (Haskell)

%o import Data.IntSet (fromList, deleteFindMin, union)

%o import qualified Data.IntSet as Set (null)

%o a247814 n = a247814_list !! (n-1)

%o a247814_list = 0 : f (fromList [1..9]) where

%o f s | Set.null s = []

%o | otherwise = x : f (s' `union`

%o fromList (map (+ 10 * x) $ tail $ dropWhile (/= mod x 10) digs))

%o where (x, s') = deleteFindMin s

%o digs = [6, 5, 1, 9, 4, 2, 8, 0, 3, 7]

%Y Intersection of A010784 and A247764.

%Y Cf. A247800 (Czech), A247801 (Danish), A247802 (Dutch), A053433 (English), A247803 (Finnish), A247804 (French), A247805 (German), A247806 (Hungarian), A247807 (Italian), A247808 (Latin), A247809 (Norwegian), A247810 (Polish), A247807 (Portuguese), A247811 (Russian), A247812 (Slovak), A247813 (Spanish), A247809 (Swedish).

%K nonn,base,word,fini,full

%O 1,3

%A _Reinhard Zumkeller_, Oct 05 2014

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 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)