OFFSET
1,1
COMMENTS
First cubefull number (A246549) not in this sequence is 216.
The first term that is not a prime power is 1536.
A set partition is inseparable iff the underlying set has no permutation whose adjacent elements always belong to different blocks. Note that this only depends on the sizes of the blocks.
EXAMPLE
The prime indices of 2304 are {1,1,1,1,1,1,1,1,2,2}, and we have disjoint inseparable choice {{4,3,1},{2}}, so 2304 is in the sequence.
The terms together with their prime indices begin:
8: {1,1,1}
16: {1,1,1,1}
27: {2,2,2}
32: {1,1,1,1,1}
64: {1,1,1,1,1,1}
81: {2,2,2,2}
125: {3,3,3}
128: {1,1,1,1,1,1,1}
243: {2,2,2,2,2}
256: {1,1,1,1,1,1,1,1}
343: {4,4,4}
512: {1,1,1,1,1,1,1,1,1}
625: {3,3,3,3}
729: {2,2,2,2,2,2}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
dsj[y_]:=Select[Tuples[IntegerPartitions/@Length/@Split[y]], UnsameQ@@Join@@#&];
insepQ[y_]:=2*Max[y]>Total[y]+1;
Join@@Position[Sign[Table[Length[Select[dsj[prix[n]], insepQ[Length/@#]&]], {n, 1000}]], 1]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 04 2025
STATUS
approved
