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!)
A272655 Numbers whose decimal expansion is an abelian square. 4
11, 22, 33, 44, 55, 66, 77, 88, 99, 1001, 1010, 1111, 1212, 1221, 1313, 1331, 1414, 1441, 1515, 1551, 1616, 1661, 1717, 1771, 1818, 1881, 1919, 1991, 2002, 2020, 2112, 2121, 2222, 2323, 2332, 2424, 2442, 2525, 2552, 2626, 2662, 2727, 2772, 2828, 2882, 2929, 2992 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Decimal numbers of the form uv where the decimal digits of v are some permutation of the decimal digits of u.
LINKS
EXAMPLE
12344132 is a member because v = 4132 is a permutation of u = 1234.
PROG
(Python)
from sympy.utilities.iterables import multiset_permutations
A272655_list = [int(str(n)+''.join(s)) for n in range(1, 100) for s in multiset_permutations(sorted(str(n)))] # Chai Wah Wu, May 15 2016
CROSSREFS
Sequence in context: A226468 A283871 A240927 * A333440 A056524 A110745
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 August 11 13:25 EDT 2024. Contains 375069 sequences. (Running on oeis4.)