OFFSET
1,1
COMMENTS
Binary strings of the form uv, where u begins with 1 and v is some permutation of u.
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
PROG
(Python)
from sympy.utilities.iterables import multiset_permutations
A272654_list = [int(b+''.join(s)) for b in (bin(n)[2:] for n in range(1, 100)) for s in multiset_permutations(sorted(b))] # Chai Wah Wu, May 15 2016
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 14 2016
EXTENSIONS
More terms from Chai Wah Wu, May 15 2016
STATUS
approved