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!)
A272654 Binary words beginning with 1 which are abelian squares. 4
11, 1001, 1010, 1111, 100001, 100010, 100100, 101011, 101101, 101110, 110011, 110101, 110110, 111111, 10000001, 10000010, 10000100, 10001000, 10010011, 10010101, 10010110, 10011001, 10011010, 10011100, 10100011, 10100101, 10100110, 10101001, 10101010, 10101100 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Binary strings of the form uv, where u begins with 1 and v is some permutation of u.
LINKS
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
Sequence in context: A278955 A278753 A266670 * A342036 A004656 A143016
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 14 2016
EXTENSIONS
More terms from Chai Wah Wu, May 15 2016
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 24 19:59 EDT 2024. Contains 371963 sequences. (Running on oeis4.)