OFFSET
1,1
EXAMPLE
Omega(896) = 2^3 = Omega(895)^2, so 896 is a term of the sequence.
MATHEMATICA
Omega[n_] := Apply[Plus, Transpose[FactorInteger[n]][[2]]]; l = {2}; Do[ If[Omega[i] == (Omega[i - 1])^3, l = Append[l, i]], {i, 3, 10^4}]; l
Join[{2}, Flatten[Position[Partition[PrimeOmega[Range[10000]], 2, 1], _?(#[[1]]^3==#[[2]]&), 1, Heads->False]]+1] (* Harvey P. Dale, Sep 22 2017 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Joseph L. Pe, Oct 31 2002
STATUS
approved