reviewed
approved
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”).
reviewed
approved
proposed
reviewed
editing
proposed
h += Fraction(1, k) # Chai Wah Wu, Mar 07 2021
(Python)
from fractions import Fraction
from sympy import lcm
k, l, h, A098464_list = 1, 1, Fraction(1, 1), []
while k < 10**6:
if l == h.denominator:
A098464_list.append(k)
k += 1
l = lcm(l, k)
h += Fraction(1, k) # Chai Wah Wu, Mar 07 2021
approved
editing
reviewed
approved
proposed
reviewed
editing
proposed
Numbers k such that A110566(k) = 1.
Shiu (2016) conjectured that this sequence is infinite. - Amiram Eldar, Feb 02 2021
Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/HarmonicNumber.html">Harmonic Number</a>.
Peter Shiu, <a href="https://arxiv.org/abs/1607.02863">The denominators of harmonic numbers</a>, arXiv:1607.02863 [math.NT], 2016.