OFFSET
1,1
COMMENTS
Here exponents equal to 1 are not taken into account, so 1255 = 5^1*251^1 = 5*251 is a term. Prime numbers are excluded because they all trivially use the same digits as their prime factorization. If, on the contrary, exponents equal to 1 are counted, the resulting sequence is A075047. - Giovanni Resta, Jul 14 2015
An interesting example of the factorization digits appearing in the same order as in its composite generator: 13532385396179 = 13 * 53^2 * 3853 * 96179. - Hans Havermann, Jun 28 2017
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[10^5], !PrimeQ@ # && Sort@ IntegerDigits@ # == Sort@ Flatten@ IntegerDigits@ Select[ Flatten@ FactorInteger@ #, #>1 &] &] (* Giovanni Resta, Jul 14 2015 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
STATUS
approved