A381540 Numbers appearing only once in A048767 (Look-and-Say partition of prime indices).
1, 2, 3, 4, 5, 7, 9, 11, 12, 13, 17, 18, 19, 20, 23, 24, 25, 28, 29, 31, 37, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 59, 61, 63, 67, 68, 71, 72, 73, 75, 76, 79, 80, 83, 88, 89, 92, 97, 98, 99, 101, 103, 104, 107, 108, 109, 112, 113, 116, 117, 121
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 2: {1} 3: {2} 4: {1,1} 5: {3} 7: {4} 9: {2,2} 11: {5} 12: {1,1,2} 13: {6} 17: {7} 18: {1,2,2} 19: {8} 20: {1,1,3} 23: {9} 24: {1,1,1,2}
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; hls[y_]:=Product[Prime[Count[y,x]]^x,{x,Union[y]}]; Select[Range[100],Count[hls/@IntegerPartitions[Total[prix[#]]],#]==1&]
Comments