OFFSET
1,1
COMMENTS
Other terms, if they exist, are at least 3*10^5. - Erich Friedman, Nov 20 2024
EXAMPLE
2 is in the sequence since Sum_{i=1..2} 1/i = 1 + 1/2 = 3/2 and the numerator and denominator have no digits in common.
3 is in the sequence since Sum_{i=1..3} 1/i = 1 + 1/2 + 1/3 = 11/6 and the numerator and denominator have no digits in common.
MATHEMATICA
Select[Range@100, Intersection @@ IntegerDigits[ Through[ {Numerator, Denominator}[ HarmonicNumber@ #]]] == {} &] (* Giovanni Resta, Sep 13 2019 *)
PROG
(PARI) isok(n) = my(h=sum(k=1, n, 1/k)); #setintersect(Set(digits(numerator(h))), Set(digits(denominator(h)))) == 0; \\ Michel Marcus, Sep 13 2019
CROSSREFS
KEYWORD
nonn,more,base
AUTHOR
Wesley Ivan Hurt, Sep 11 2019
STATUS
approved