OFFSET
1,2
COMMENTS
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798. The multiset of multisets with MM-number n is formed by taking the multiset of prime indices of each part of the multiset of prime indices of n. For example, the prime indices of 78 are {1,2,6}, so the multiset of multisets with MM-number 78 is {{},{1},{1,2}}.
A set multipartition is a finite multiset of finite nonempty sets.
EXAMPLE
The terms together with the corresponding set multipartitions begin:
1: {}
3: {{1}}
5: {{2}}
9: {{1},{1}}
11: {{3}}
13: {{1,2}}
15: {{1},{2}}
17: {{4}}
25: {{2},{2}}
27: {{1},{1},{1}}
29: {{1,3}}
31: {{5}}
33: {{1},{3}}
39: {{1},{1,2}}
41: {{6}}
43: {{1,4}}
45: {{1},{1},{2}}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], OddQ[#]&&And@@SquareFreeQ/@prix[#]&]
CROSSREFS
Odd case of A302478.
Products of odd terms of A302491.
A050320 counts set multipartitions of prime indices.
A089259 counts set multipartitions of integer partitions.
A116540 counts set multipartitions covering an initial interval by weight.
A368533 lists numbers with squarefree binary indices.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 08 2024
STATUS
approved