OFFSET
1,1
COMMENTS
Positions of 2 in A383706.
The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k). This gives a bijective correspondence between positive integers and integer partitions.
EXAMPLE
The prime indices of 275 are {3,3,5}, with two ways to choose disjoint strict partitions of each part: ((3),(2,1),(5)) and ((2,1),(3),(5)). Hence 275 is in the sequence.
The terms together with their prime indices begin:
5: {3}
7: {4}
21: {2,4}
22: {1,5}
25: {3,3}
26: {1,6}
33: {2,5}
35: {3,4}
39: {2,6}
49: {4,4}
102: {1,2,7}
114: {1,2,8}
130: {1,3,6}
147: {2,4,4}
154: {1,4,5}
165: {2,3,5}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
pof[y_]:=Select[Join@@@Tuples[IntegerPartitions/@y], UnsameQ@@#&];
Select[Range[100], Length[pof[prix[#]]]==2&]
CROSSREFS
These are positions of 2 in A383706.
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, May 27 2025
STATUS
approved
