OFFSET
1,4
COMMENTS
A number's prime signature (row n of A124010) is the sequence of positive exponents in its prime factorization, so a number has distinct prime multiplicities iff all the exponents in its prime signature are distinct.
EXAMPLE
The a(n) factorizations for n = 2, 4, 8, 60, 16, 36, 32, 48:
2 4 8 5*12 16 4*9 32 48
2*2 2*4 3*20 4*4 3*12 4*8 4*12
2*2*2 3*4*5 2*8 3*3*4 2*16 3*16
2*2*3*5 2*2*4 2*18 2*4*4 3*4*4
2*2*2*2 2*2*9 2*2*8 2*24
2*2*3*3 2*2*2*4 2*3*8
2*2*2*2*2 2*2*12
2*2*3*4
2*2*2*2*3
MATHEMATICA
facsusing[s_, n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facsusing[Select[s, Divisible[n/d, #]&], n/d], Min@@#>=d&]], {d, Select[s, Divisible[n, #]&]}]];
Table[Length[facsusing[Select[Range[2, n], UnsameQ@@Last/@FactorInteger[#]&], n]], {n, 100}]
CROSSREFS
A001055 counts factorizations.
A007425 counts divisors of divisors.
A045778 counts strict factorizations.
A074206 counts ordered factorizations.
A130091 lists numbers with distinct prime multiplicities.
A181796 counts divisors with distinct prime multiplicities.
A253249 counts nonempty chains of divisors.
A281116 counts factorizations with no common divisor.
A302696 lists numbers whose prime indices are pairwise coprime.
A305149 counts stable factorizations.
A327498 gives the maximum divisor with distinct prime multiplicities.
A336568 = not a product of two numbers with distinct prime multiplicities.
A337256 counts chains of divisors.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 03 2020
STATUS
approved