OFFSET
1,1
REFERENCES
Computed by Sam Taylor.
LINKS
J. N. Cooper, D. Eichhorn and K. O'Bryant, Reciprocals of binary power series
FORMULA
The terms are the exponents in the expansion of 1/((1-x)S) read mod 2 where S = Sum_{s >= 0} x^{s^2}.
MATHEMATICA
m = maxExponent = 13;
S = Sum[x^(s^2), {s, 0, m}];
(Exponent[#, x]& /@ (List @@ (Normal[1/((1-x)S) + O[x]^(m^2)] /. c_ x^p_ :> Mod[c, 2] x^p))) // Rest (* Jean-François Alcover, Dec 10 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Nadia Heninger, Dec 13 2007
STATUS
approved