cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A272654 Binary words beginning with 1 which are abelian squares.

Original entry on oeis.org

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
Offset: 1

Views

Author

N. J. A. Sloane, May 14 2016

Keywords

Comments

Binary strings of the form uv, where u begins with 1 and v is some permutation of u.

Crossrefs

Programs

  • 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

Extensions

More terms from Chai Wah Wu, May 15 2016