OFFSET
0,2
COMMENTS
a(n) is the number of polynomials p in F_2[z] with p = p_1^e_1*...*p_k^e_k where each p_i is irreducible and deg(p_i) != deg(p_j) for all i != j.
LINKS
A. Knopfmacher and R. Warlimont, Distinct degree factorizations for polynomials over a finite field, Trans. Amer. Math. Soc. 347 (1995), no. 6, 2235-2243.
FORMULA
G.f.: Product_{n>=1} (b(n)/(1-x^n) - b(n) +1) where b(n) = A001037(n).
EXAMPLE
a(2) = 3 because we have: x^2, (x+1)^2, x^2+x+1.
MATHEMATICA
nn = 30; b := Table[1/n Sum[MoebiusMu[d] 2^(n/d), {d, Divisors[n]}], {n, 1, nn}]; CoefficientList[ Series[Product[b[[i]]/(1 - x^i) - b[[i]] + 1, {i, 1, nn}], {x, 0, nn}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Feb 25 2022
STATUS
approved