login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A091221
Number of distinct irreducible polynomials dividing n-th GF(2)[X]-polynomial.
15
0, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 2, 1, 2, 1, 1, 1, 3, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 3, 1, 2, 2, 2, 1, 2, 2, 2, 2, 3, 1, 2, 2, 2, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2, 1, 2, 2, 1, 2, 3, 1, 2, 1, 3, 2, 3, 1, 2, 2, 2, 2, 3, 2, 2, 1, 2, 3, 2, 1, 3, 1, 2, 2, 3, 1, 3, 2, 2, 2, 2, 1, 3, 2, 2, 3, 2
OFFSET
1,6
MAPLE
f:= proc(n) local L, P, R, i;
L:= convert(n, base, 2);
P:= add(L[i]*X^(i-1), i=1..nops(L));
R:= Factors(P) mod 2;
nops(R[2]);
end proc:
map(f, [$1.200]); # Robert Israel, Oct 11 2024
CROSSREFS
a(n) = A001221(A091203(n)) = A001221(A091205(n)). A000374(n) = a(A000051(n)).
Sequence in context: A379552 A265210 A023396 * A106495 A100428 A325169
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 03 2004
STATUS
approved