OFFSET
1,2
COMMENTS
All the harmonic numbers (A001599) are terms of this sequence.
The least term with m elements in the continued fraction of the harmonic mean of its divisors for m = 1, 2, 3, and 4 is 1, 15, 792 and 545, respectively.
Are there terms with more than 4 elements? There are no such terms below 2*10^9.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..150
EXAMPLE
15 is a term since the harmonic mean of its divisors is 5/2 = 2 + 1/2.
545 is a term since the harmonic mean of its divisors is 109/33 = 3 + 1/(3 + 1/(3 + 1/3)).
792 is a term since the harmonic mean of its divisors is 528/65 = 8 + 1/(8 + 1/8).
MATHEMATICA
c[n_] := ContinuedFraction[DivisorSigma[0, n] / DivisorSigma[-1, n]]; q[n_] := Length[Union[c[n]]] == 1; Select[Range[10^6], q]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 19 2021
STATUS
approved