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!)
A071925 Digitally balanced numbers: binary numbers which have the same number of 0's as 1's; decimal representation: A031443. 4
10, 1001, 1010, 1100, 100011, 100101, 100110, 101001, 101010, 101100, 110001, 110010, 110100, 111000, 10000111, 10001011, 10001101, 10001110, 10010011, 10010101, 10010110, 10011001, 10011010, 10011100, 10100011 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A007088(A031443(n)).
PROG
(Python)
from itertools import islice, count
from sympy.utilities.iterables import multiset_permutations
def A071925gen(): # generator of terms
for n in count(1):
yield from (int('1'+''.join(p)) for p in multiset_permutations('0'*n+'1'*(n-1)))
A071925_list = list(islice(A071925gen(), 30)) # Chai Wah Wu, Dec 06 2021
CROSSREFS
Sequence in context: A135612 A110147 A215023 * A346434 A139101 A015482
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Jun 14 2002
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 11:24 EDT 2024. Contains 371967 sequences. (Running on oeis4.)