OFFSET
1,6
COMMENTS
Conjecture : for n > 1000, a(n) - n/2 > sqrt(n).
MATHEMATICA
Accumulate[Table[If[Mod[FactorInteger[n][[-1, 1]], 4]==3, 1, 0], {n, 80}]] (* Harvey P. Dale, Jun 29 2017 *)
PROG
(PARI) for(n=2, 200, print1(sum(i=2, n, if((component(component(factor(i), 1), omega(i))-3)%4, 0, 1)), ", "))
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Jun 07 2002
EXTENSIONS
Zero prepended by Harvey P. Dale, Jun 29 2017
STATUS
approved