OFFSET
1,4
COMMENTS
A proper factorization means a factorization different from the one-term factorization n.
LINKS
Bartlomiej Pawlik, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = A395579(n)/n.
a(n) = Product_{f in F'(n)} min(f), where F'(n) is the set of factorizations of n into factors > 1, up to permutation, excluding the one-term factorization n.
EXAMPLE
The proper factorizations of 12 are 2*6, 3*4, and 2*2*3, so a(12) = 2*3*2 = 12.
MATHEMATICA
mp[n_Integer?Positive, m_Integer?Positive] := mp[n, m] = Join[{{n}}, Flatten[Table[If[Mod[n, d] == 0, Prepend[#, d] & /@ mp[n/d, d], Nothing], {d, m, Floor[Sqrt[n]]}], 1]];
a[1] = 1;
a[n_Integer?Positive] := a[n] = Times @@ (First /@ Rest[mp[n, 2]]);
Table[a[n], {n, 1, 75}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bartlomiej Pawlik, May 16 2026
STATUS
approved
