A384396 Position of first appearance of n in A384389 (proper choices of disjoint strict partitions of each prime index).
1, 5, 11, 13, 17, 19, 62, 23, 111, 29, 123, 31, 129, 217, 37, 141, 106, 41, 159, 391, 118, 43
Offset: 0
Crossrefs
Positions of first appearances in A384389.
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; pofprop[y_]:=Select[DeleteCases[Join@@@Tuples[IntegerPartitions/@y],y],UnsameQ@@#&]; lv=Table[Length[pofprop[prix[n]]],{n,100}]; mnrm[s_]:=If[Min@@s==1,mnrm[DeleteCases[s-1,0]]+1,0]; Table[Position[lv,x][[1,1]],{x,0,mnrm[lv+1]-1}]
Comments