OFFSET
1,2
COMMENTS
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..10000
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {}
15: {2,3}
21: {2,4}
25: {3,3}
27: {2,2,2}
33: {2,5}
35: {3,4}
39: {2,6}
42: {1,2,4}
45: {2,2,3}
49: {4,4}
50: {1,3,3}
51: {2,7}
54: {1,2,2,2}
55: {3,5}
57: {2,8}
63: {2,2,4}
65: {3,6}
66: {1,2,5}
69: {2,9}
70: {1,3,4}
75: {2,3,3}
77: {4,5}
78: {1,2,6}
81: {2,2,2,2}
MAPLE
q:= n-> (l-> mul(i, i=l)>add(i, i=l))(map(i->
numtheory[pi](i[1])$i[2], ifactors(n)[2])):
select(q, [$1..200])[]; # Alois P. Heinz, Mar 27 2019
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Times@@primeMS[#]>Plus@@primeMS[#]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 25 2019
STATUS
approved