OFFSET
2,5
COMMENTS
An aperiodic factorization of n is a finite multiset of positive integers greater than 1 whose product is n and whose multiplicities are relatively prime.
LINKS
Antti Karttunen, Table of n, a(n) for n = 2..65537
EXAMPLE
The a(36) = 7 aperiodic factorizations are (2*2*9), (2*3*6), (2*18), (3*3*4), (3*12), (4*9), and (36). Missing from this list are (2*2*3*3) and (6*6).
MATHEMATICA
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
Table[Length[Select[facs[n], GCD@@Length/@Split[#]===1&]], {n, 2, 100}]
PROG
(PARI)
A303386(n) = if(1==n, n, my(r); sumdiv(A052409(n), d, ispower(n, d, &r); moebius(d)*A001055(r))); \\ Antti Karttunen, Sep 25 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 23 2018
EXTENSIONS
More terms from Antti Karttunen, Sep 25 2018
STATUS
approved