OFFSET
1,14
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
f:= proc(n) local R; R:= numtheory:-factorset(n); if max(R) > 2*min(R) then 1 else 0 fi end proc:
ListTools:-PartialSums(map(f, [$1..100])); # Robert Israel, Jul 27 2020
MATHEMATICA
pfg[n_]:=Module[{f=Transpose[FactorInteger[n]][[1]]}, If[Last[f]> 2*First[ f], 1, 0]]; Accumulate[Array[pfg, 80]] (* Harvey P. Dale, Apr 28 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 17 2003
STATUS
approved