cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A349502 Numbers k such that the continued fraction of the harmonic mean of the divisors of k contains distinct elements.

This page as a plain text file.
%I A349502 #8 Nov 21 2021 05:08:33
%S A349502 1,2,3,6,9,14,20,24,28,32,33,35,42,44,45,51,52,55,60,65,66,68,69,70,
%T A349502 72,84,87,88,91,95,99,104,110,114,115,117,120,123,125,126,128,135,136,
%U A349502 138,140,141,145,152,153,156,159,170,174,177,180,182,185,186,187,188
%N A349502 Numbers k such that the continued fraction of the harmonic mean of the divisors of k contains distinct elements.
%C A349502 All the harmonic numbers (A001599) are terms of this sequence.
%H A349502 Amiram Eldar, <a href="/A349502/b349502.txt">Table of n, a(n) for n = 1..10000</a>
%e A349502 2 is a term since the harmonic mean of the divisors of 2 is 4/3 = 1 + 1/3 and the elements of the continued fraction, {1, 3}, are different.
%e A349502 4 is not a term since the harmonic mean of the divisors of 4 is 12/7 = 1 + 1/(1 + 1/(2 + 1/2)) and the elements of the continued fraction, {1, 1, 2, 2}, are not distinct.
%t A349502 c[n_] := ContinuedFraction[DivisorSigma[0, n]/DivisorSigma[-1, n]]; q[n_] := Length[(cn = c[n])] == Length[DeleteDuplicates[cn]]; Select[Range[200], q]
%Y A349502 Cf. A001599, A349473, A349476.
%K A349502 nonn
%O A349502 1,2
%A A349502 _Amiram Eldar_, Nov 20 2021