OFFSET
1,1
COMMENTS
EXAMPLE
The terms together with their prime indices begin:
2: {1} 64: {1,1,1,1,1,1} 136: {1,1,1,7}
4: {1,1} 68: {1,1,7} 144: {1,1,1,1,2,2}
8: {1,1,1} 72: {1,1,1,2,2} 148: {1,1,12}
12: {1,1,2} 76: {1,1,8} 152: {1,1,1,8}
16: {1,1,1,1} 80: {1,1,1,1,3} 160: {1,1,1,1,1,3}
20: {1,1,3} 88: {1,1,1,5} 164: {1,1,13}
24: {1,1,1,2} 92: {1,1,9} 168: {1,1,1,2,4}
28: {1,1,4} 96: {1,1,1,1,1,2} 172: {1,1,14}
32: {1,1,1,1,1} 104: {1,1,1,6} 176: {1,1,1,1,5}
40: {1,1,1,3} 112: {1,1,1,1,4} 184: {1,1,1,9}
44: {1,1,5} 116: {1,1,10} 188: {1,1,15}
48: {1,1,1,1,2} 120: {1,1,1,2,3} 192: {1,1,1,1,1,1,2}
52: {1,1,6} 124: {1,1,11} 200: {1,1,1,3,3}
56: {1,1,1,4} 128: {1,1,1,1,1,1,1} 208: {1,1,1,1,6}
MATHEMATICA
prifacs[n_]:=If[n==1, {}, Flatten[ConstantArray@@@FactorInteger[n]]];
merr[y_]:=If[Length[y]==0, 0, If[OddQ[Length[y]], y[[(Length[y]+1)/2]], y[[1+Length[y]/2]]]];
Select[Range[100], merr[prifacs[#]]==2&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 07 2023
STATUS
approved