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!)
A249854 Numbers <= 10^6 with valid Luhn mod 10 check digit, sorted lexicographically. 3
0, 100008, 100016, 100024, 100032, 100040, 100057, 100065, 100073, 100081, 10009, 100099, 100107, 100115, 100123, 100131, 100149, 100156, 100164, 10017, 100172, 100180, 100198, 100206, 100214, 100222, 100230, 100248, 10025, 100255, 100263, 100271, 100289 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Wikipedia, Luhn algorithm
PROG
(Haskell)
import Data.List (sortBy); import Data.Function (on)
a249854 n = a249854_list !! (n-1)
a249854_list = sortBy (compare `on` show) $
takeWhile (<= 10^6) a093018_list
CROSSREFS
Sequence in context: A017645 A210761 A165297 * A237233 A182040 A120216
KEYWORD
nonn,base,fini,full
AUTHOR
Reinhard Zumkeller, Nov 08 2014
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 24 17:29 EDT 2024. Contains 371962 sequences. (Running on oeis4.)