login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A069096
Numbers k such that the numerator of Sum_{d|k} 1/d > 3*k.
1
900, 3600, 8100, 14400, 17424, 22500, 32400, 57600, 69696, 72900, 90000, 108900, 129600, 166464, 202500, 230400, 260100, 278784, 291600, 345744, 360000, 374544, 435600, 476100, 518400, 562500, 656100, 665856, 685584, 756900, 810000, 921600
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[10^6], Numerator @ DivisorSigma[-1, #] > 3*# &] (* Amiram Eldar, Feb 19 2021 *)
PROG
(PARI) isok(k) = numerator(sumdiv(k, d, 1/d)) > 3*k; \\ Michel Marcus, Feb 15 2021
CROSSREFS
Sequence in context: A287800 A246887 A232556 * A232557 A119541 A173486
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Apr 07 2002
STATUS
approved