OFFSET
1,4
COMMENTS
a(n) is the number of ways to choose a perfect divisor of each factor in a strict factorization of n.
FORMULA
Dirichlet g.f.: Product_{n > 1}(1 + A089723(n)/n^s).
EXAMPLE
The a(24) = 8 twice-factorizations: (2)*(3)*(2*2), (2)*(3)*(4), (2)*(12), (3)*(2*2*2), (3)*(8), (2*2)*(6), (4)*(6), (24).
MATHEMATICA
sfs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[sfs[n/d], Min@@#>d&]], {d, Rest[Divisors[n]]}]];
Table[Sum[Product[DivisorSigma[0, GCD@@FactorInteger[d][[All, 2]]], {d, fac}], {fac, sfs[n]}], {n, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 05 2017
STATUS
approved