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”).

A375200
Irregular triangular array read by rows. The n-th row gives the elementary divisors of the group of units in the quotient ring F_2[x]/<x^n>.
1
1, 2, 4, 2, 4, 2, 8, 2, 2, 8, 2, 4, 8, 2, 2, 4, 8, 2, 2, 4, 16, 2, 2, 2, 4, 16, 2, 2, 4, 4, 16, 2, 2, 2, 4, 4, 16, 2, 2, 2, 4, 8, 16, 2, 2, 2, 2, 4, 8, 16, 2, 2, 2, 4, 4, 8, 16, 2, 2, 2, 2, 4, 4, 8, 16, 2, 2, 2, 2, 4, 4, 8, 32
OFFSET
1,2
COMMENTS
A general formula for the isomorphism class of the group of units in any quotient ring of the polynomial ring F_p[x] (p prime) is given by Keith Kearnes in the Mathematics Stack Exchange link below.
EXAMPLE
Triangle begins
1;
2;
4;
2, 4;
2, 8;
2, 2, 8;
2, 4, 8;
2, 2, 4, 8;
2, 2, 4, 16;
2, 2, 2, 4, 16;
2, 2, 4, 4, 16;
2, 2, 2, 4, 4, 16;
2, 2, 2, 4, 8, 16;
2, 2, 2, 2, 4, 8, 16;
2, 2, 2, 4, 4, 8, 16;
2, 2, 2, 2, 4, 4, 8, 16;
2, 2, 2, 2, 4, 4, 8, 32;
...
MATHEMATICA
groupofunits2xn[e_] := Flatten[Table[{Table[2^(i + 1), {(Ceiling[e/2^i] - 2 Ceiling[e/2^(i + 1)] + Ceiling[e/2^(i + 2)])}]}, {i, 0, 10}]]; Prepend[Drop[Table[groupofunits2xn[n], {n, 1, 16}], 1], {1}]
CROSSREFS
Cf. A375312.
Sequence in context: A128886 A031883 A366261 * A086152 A194577 A334970
KEYWORD
nonn,tabf
AUTHOR
Geoffrey Critzer, Aug 11 2024
STATUS
approved