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!)
A192825 Numbers m containing in decimal representation at least one zero and having no common digit in m and 2*m. 3
207, 208, 209, 307, 308, 309, 406, 409, 606, 607, 609, 706, 707, 708, 709, 807, 808, 906, 907, 909, 2057, 2058, 2059, 2067, 2069, 2072, 2073, 2077, 2078, 2079, 2082, 2083, 2088, 2092, 2093, 2207, 2208, 2209, 2307, 2308, 2309, 2707, 2708, 2709, 2807, 2808 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Intersection of A011540 and A038365; A168046(a(n)) = 0.
LINKS
PROG
(Haskell)
import Data.List (intersect)
a192825 n = a192825_list !! (n-1)
a192825_list = filter (\x ->
'0' `elem` show x && null (show (2*x) `intersect` show x)) [1..]
CROSSREFS
Sequence in context: A201032 A133149 A080530 * A045069 A199497 A179171
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Aug 09 2011
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)