OFFSET
1,13
COMMENTS
LINKS
Wikipedia, Axiom of choice.
EXAMPLE
The a(169) = 3 multisets are: {2,2}, {2,3}, {3,3}.
The a(507) = 3 multisets are: {2,2,2}, {2,2,3}, {2,3,3}.
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Table[Length[Union[Sort/@Tuples[primeMS/@primeMS[n]]]], {n, 100}]
CROSSREFS
Counting sequences instead of multisets gives A355741.
Choosing weakly increasing sequences of divisors gives A355745.
A003963 multiplies together the prime indices of n.
A324850 lists numbers divisible by the product of their prime indices.
A344606 counts alternating permutations of prime indices.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 18 2022
STATUS
approved