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!)
A210760 Primes less than 100000 sorted lexicographically in decimal representation. 6
10007, 10009, 10037, 10039, 10061, 10067, 10069, 10079, 1009, 10091, 10093, 10099, 101, 10103, 10111, 1013, 10133, 10139, 10141, 10151, 10159, 10163, 10169, 10177, 10181, 1019, 10193, 1021, 10211, 10223, 10243, 10247, 10253, 10259, 10267, 10271, 10273, 10289 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,1

COMMENTS

The sequence is finite with 9592 terms, A006880(5) = 9592.

LINKS

Reinhard Zumkeller, Table of n, a(n) for n = 1..9592 all terms

Eric Weisstein's World of Mathematics, Lexicographic Order

Wikipedia, Lexicographical order

EXAMPLE

a(1194) = 2; a(2323) = 3; a(4489) = 5; a(6557) = 7;

a(1) = A000040(1230) = 10007, first term;

a(9592) = A000040(9592) = 99991, last term.

PROG

(Haskell)

import Data.List (sortBy)

import Data.Function (on)

a210760 n = a210760_list !! (n-1)

a210760_list = sortBy (compare `on` show) $

                      takeWhile (<= 10^5) a000040_list

-- Reinhard Zumkeller, Apr 01 2012, Mar 25 2012

CROSSREFS

Cf. A000040, A210757, A210758, A210759, A210761.

Sequence in context: A082567 A330135 A031598 * A164968 A165296 A182697

Adjacent sequences:  A210757 A210758 A210759 * A210761 A210762 A210763

KEYWORD

nonn,base,fini,full

AUTHOR

Reinhard Zumkeller, Mar 25 2012

STATUS

approved

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

License Agreements, Terms of Use, Privacy Policy. .

Last modified February 6 15:41 EST 2022. Contains 350931 sequences. (Running on oeis4.)