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 A192628 #29 Mar 07 2020 08:49:34 %S A192628 0,1,3,7,9,11,19,25,43,49,55,59,67,71,75,81,83,87,99,103,107,119,121, %T A192628 131,139,147,163,169,171,179,183,211,225,227,243,251,263,275,279,283, %U A192628 289,307,331,343,347,361,363,375,379,387,391,419,439,441,443,455 %N A192628 Nonvanishing exponents of the reciprocal of the modulo 2 generating function for the sum-of-divisor function. %C A192628 Consider sigma, the sum-of-positive-divisor function with s(0) := 1. Let Sigma(q) be the *binary* generating function for sigma, namely %C A192628 Sigma(q) := sigma(0)q^0 + sigma(1)q^1 + sigma(2)q^2 + sigma(3)q^3 + sigma(4)q^4 + ... %C A192628 More precisely, we require that Sigma(q) is binary in the sense of reducing all coefficients modulo 2. Thus, the coefficient of q^k is 0 if sigma(k) is even, odd otherwise. One could equivalently define Sigma(q) to be the sum of all q^k (for k nonnegative) such that sigma(k) is odd. The terms of the given sequence are the exponents of the nonvanishing monomials of the reciprocal 1/Sigma(q). Other equivalent definitions for this sequence can be discovered through appeals to representation theory. %C A192628 Density upper bound: 1/16. Conjectured density: 1/32. Contains only 0 and positive integers congruent to 1 and 3 (mod 8) and 7 (mod 16). %C A192628 Congruence class: %C A192628 *0 (mod 8): 0, density 0 %C A192628 *1 (mod 8): odd squares, density 0 %C A192628 *3 (mod 8): integers of the form (p^e)(k^2) for p prime congruent to 3 (mod 8), e congruent to 1 (mod 4), and k odd and coprime to p, density 0 %C A192628 *7 (mod 16): conjectured density 1/32 with upper bound 1/16. %C A192628 After a(0)=0, these are the positive integers which have an odd number of representations as a sum of positive integers which have odd divisor sum. A positive integer k has odd divisor sum if and only if k is a square or twice a square (A028982). For example, a(2) = 3 can be represented as: 2+1, 1+2, or 1+1+1, 3 representations %D A192628 J. Cooper, D. Eichhorn, and K. O'Bryant, Reciprocals of binary power series, International Journal of Number Theory, 2 no. 4 (2006), 499-522. %H A192628 J. N. Cooper and A. W. N. Riasanovsky, <a href="http://www.math.sc.edu/~cooper/Sigma.pdf">On the Reciprocal of the Binary Generating Function for the Sum of Divisors</a>, 2012; <a href="https://cs.uwaterloo.ca/journals/JIS/VOL16/Cooper/cooper3.html">J. Int. Seq. 16 (2013) #13.1.8</a> %o A192628 (Sage) %o A192628 prec = 2^14 %o A192628 R = PowerSeriesRing(GF(2), 'q', default_prec = prec) %o A192628 q = R.gen() %o A192628 def sigma(n): %o A192628 return sum(Integer(n).divisors()) %o A192628 def BPS(n): #binary power series %o A192628 return sum([q^s for s in n]) %o A192628 sigmaList = [0] + [n for n in range(1, prec) if mod(sigma(n), 2) == 1] %o A192628 sigmaSeries = BPS(sigmaList) %o A192628 print((1/sigmaSeries).exponents()[:128]) %Y A192628 Cf. A028982. %K A192628 nonn %O A192628 0,3 %A A192628 _Alexander Riasanovsky_, Dec 31 2012