OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..2000
MATHEMATICA
Select[FromDigits/@Tuples[{0, 1}, 8], DigitCount[#, 10, 1]==DigitCount[#, 10, 0]&] (* Harvey P. Dale, Sep 08 2024 *)
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
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Jun 14 2002
STATUS
approved