OFFSET
1,2
EXAMPLE
There are 7 prime powers (1,2,4,7,11,16,64) among the first 14 terms of the sequence. So a(15) = a(14) + 7 = 71.
MATHEMATICA
a = {1}; Do[AppendTo[a, a[[ -1]] + 1 + Length[Select[a, Length[FactorInteger[ # ]] == 1 &]]], {60}]; a (* Stefan Steinerberger, Oct 16 2007 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Jun 13 2007
EXTENSIONS
More terms from Stefan Steinerberger, Oct 16 2007
STATUS
approved