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”).

A226637
Numbers m having with m+1 no common digit in decimal representations.
2
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 19, 29, 39, 49, 59, 69, 79, 99, 199, 299, 399, 499, 599, 699, 799, 999, 1999, 2999, 3999, 4999, 5999, 6999, 7999, 9999, 19999, 29999, 39999, 49999, 59999, 69999, 79999, 99999, 199999, 299999, 399999
OFFSET
1,3
COMMENTS
A076489(a(n)) = 0;
A000030(a(n)) <> 8 for n > 9.
PROG
(Haskell)
a226637 n = a226637_list !! (n-1)
a226637_list = filter ((== 0) . a076489) [0..]
CROSSREFS
Sequence in context: A190876 A051885 A227378 * A274841 A247227 A048410
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 01 2013
STATUS
approved