OFFSET
1,1
COMMENTS
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.
The first sums of a nonempty sequence (a, b, c, d, ...) are (a+b, b+c, c+d, ...).
EXAMPLE
The first sums of (1,1,1,2) are (2,2,3), which is the prime indices of 45, so 45 is not in the sequence.
The first sums of (3,3,3) are (6,6), which is the prime indices of 169, so 169 is not in the sequence.
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
uncha[tar_, ini_]:=(cur={ini}; Do[AppendTo[cur, tar[[k]]-If[k==1, ini, cur[[k]]]], {k, 1, Length[tar]}]; cur);
Select[Range[2, 100], With[{m=prix[#]}, Select[Table[uncha[m, i], {i, 1, Max[m]}], LessEqual@@#&]=={}]&]
CROSSREFS
These are numbers whose prime indices are not a row of A390307.
Positions of 0 in A390444 with alternating zeros, except 1.
These partitions are counted by A390447.
Complement of A390449.
A390307 gives first sums of prime indices.
A390429 counts distinct first sums of partitions.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 13 2025
STATUS
approved
