OFFSET
1,1
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.
We say that a sequence of nonempty sets is choosable iff it is possible to choose a different element from each set. For example, ({1,2},{1},{1,3}) is choosable because we have the choice (2,1,3), but ({1},{2},{1,3},{2,3}) is not.
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Select[Tuples[Select[IntegerPartitions[#], UnsameQ@@#&]&/@prix[#]], UnsameQ@@#&]=={}&]
CROSSREFS
Twice-partitions of this type (into distinct strict partitions) are counted by A358914.
These are the positions of 0 in A387115.
The complement is A387177.
A003963 multiplies together the prime indices of n.
A120383 lists numbers divisible by all of their prime indices.
A289509 lists numbers with relatively prime prime indices.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 27 2025
STATUS
approved
