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!)
A043216 Numbers k such that 0 and 1 occur juxtaposed in the base-10 representation of k but not of k-1. 0
10, 100, 201, 210, 301, 310, 401, 410, 501, 510, 601, 610, 701, 710, 801, 810, 901, 910, 1000, 1201, 1210, 1301, 1310, 1401, 1410, 1501, 1510, 1601, 1610, 1701, 1710, 1801, 1810, 1901, 1910, 2001, 2010, 2100, 2201, 2210, 2301 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(Python)
def ok(n):
sn, snm1 = str(n), str(n-1)
return ("01" in sn or "10" in sn) and not ("01" in snm1 or "10" in snm1)
print(list(filter(ok, range(1, 2302)))) # Michael S. Branicky, Aug 23 2021
CROSSREFS
Sequence in context: A072082 A078259 A101655 * A044342 A119052 A029774
KEYWORD
nonn,base
AUTHOR
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 July 26 05:27 EDT 2024. Contains 374615 sequences. (Running on oeis4.)