OFFSET
1,2
COMMENTS
EXAMPLE
The terms together with their prime indices begin:
1: {}
3: {2}
7: {4}
13: {6}
21: {2,4}
35: {3,4}
39: {2,6}
89: {24}
133: {4,8}
105: {2,3,4}
91: {4,6}
195: {2,3,6}
351: {2,2,2,6}
For example, the choices for a(12) = 195 are:
{1,1,1} {1,2,2} {1,3,6}
{1,1,2} {1,2,3} {2,2,3}
{1,1,3} {1,2,6} {2,3,3}
{1,1,6} {1,3,3} {2,3,6}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
mnrm[s_]:=If[Min@@s==1, mnrm[DeleteCases[s-1, 0]]+1, 0];
az=Table[Length[Union[Sort/@Tuples[Divisors/@primeMS[n]]]], {n, 1000}];
Table[Position[az, k][[1, 1]], {k, mnrm[az]}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 21 2022
STATUS
approved