[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A122426
Numbers m such that in decimal representation the lexicographically greatest divisor of m is smaller than m.
3
10, 12, 14, 15, 16, 18, 20, 21, 24, 25, 27, 28, 30, 32, 35, 36, 40, 42, 45, 48, 49, 54, 56, 63, 64, 72, 81, 100, 102, 104, 105, 106, 108, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 138, 140
OFFSET
1,1
COMMENTS
A122425(a(n)) < a(n); complement of A122427.
LINKS
PROG
(Haskell)
a122426 n = a122426_list !! (n-1)
a122426_list = [x | x <- [1..], a122425 x < x]
-- Reinhard Zumkeller, Feb 05 2015
CROSSREFS
Sequence in context: A124867 A199991 A161598 * A141322 A350180 A099103
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 04 2006
STATUS
approved