OFFSET
1,2
COMMENTS
EXAMPLE
Most small numbers are in the sequence. However, the sequence of non-terms together with their prime indices begins:
4: {1,1}
8: {1,1,1}
9: {2,2}
12: {1,1,2}
16: {1,1,1,1}
18: {1,2,2}
20: {1,1,3}
24: {1,1,1,2}
25: {3,3}
27: {2,2,2}
28: {1,1,4}
30: {1,2,3}
32: {1,1,1,1,1}
36: {1,1,2,2}
40: {1,1,1,3}
44: {1,1,5}
45: {2,2,3}
48: {1,1,1,1,2}
49: {4,4}
50: {1,3,3}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], UnsameQ@@ReplaceList[primeMS[#], {___, s__, ___}:>Plus[s]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 20 2019
STATUS
approved