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
Chai Wah Wu, Table of n, a(n) for n = 1..10000
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
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 14 2016
EXTENSIONS
More terms from Chai Wah Wu, May 15 2016
STATUS
approved