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.
%I A107861 #28 Jan 25 2024 07:53:40 %S A107861 2,3,7,9,31,19,127,81,343,211,2047,361,8191,2059,14221,6561,131071, %T A107861 6859,524287,44521,778765,175099,8388607,130321,28629151,1586131, %U A107861 40353607,4239481,536870911,1360291,2147483647,43046721 %N A107861 Number of distinct values taken by the sums of all subsets of the n-th roots of unity. %C A107861 Note that a(6)=19, a(12)=19^2 and a(18)=19^3. Similarly, a(10)=211 and a(20)=211^2. For prime n, a(n)=2^n-1. For powers of 2, we have a(2^n)=3^(2^(n-1)). It appears that _David W. Wilson_'s conjectured formula for A103314 may apply to this sequence also. Observe that due to symmetry, n divides a(n)-1. %C A107861 Definition edited by _N. J. A. Sloane_, Apr 09 2020. The old definition was "Number of unique values in the sums of all subsets of the n-th roots of unity". %H A107861 T. D. Noe, <a href="http://www.sspectra.com/math/RootSums.html">Sums of Roots of Unity Plots</a> %e A107861 a(1)=2 as there are two distinct sums: the sum of the empty subset of roots is 0, and the sum of {1} is 1. %o A107861 (PARI) { a(n) = my(S=Set()); forvec(c=vector(n,i,[0,1]), S=setunion(S,[Pol(c)%polcyclo(n)])); #S } /* _Max Alekseyev_, Jun 25 2007 */ %Y A107861 Cf. A103314 (number of subsets of the n-th roots of unity summing to zero). %K A107861 nonn,more %O A107861 1,1 %A A107861 _T. D. Noe_, May 25 2005 %E A107861 a(1) corrected by _Max Alekseyev_, Jun 25 2007 %E A107861 a(21)-a(32) from _Max Alekseyev_, Sep 07 2007