cp's OEIS Frontend

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.

User: Christof Beierle

Christof Beierle's wiki page.

Christof Beierle has authored 4 sequences.

A350271 The covering radius of the first order Reed-Muller code RM(1,n).

Original entry on oeis.org

0, 1, 2, 6, 12, 28, 56, 120
Offset: 1

Author

Christof Beierle, Dec 22 2021

Keywords

Comments

242 <= a(9) <= 244.
For odd values of n, we have 2^(n-1) - 2^((n-1)/2) <= a(n) <= 2*floor(2^(n-2) - 2^(n/2-2)).

Crossrefs

Cf. A006516.

Formula

a(2n) = A006516(n).

A335804 Number of n X n matrices over GF(2) with minimal polynomial x^n - 1.

Original entry on oeis.org

1, 3, 56, 2520, 666624, 839946240, 3343877406720, 41781748196966400, 3701652434038082764800, 763416952708225267547504640, 750836199529096452135514747699200
Offset: 1

Author

Christof Beierle, Jun 24 2020

Keywords

Comments

a(n) is the size of the conjugacy class in GL(n,GF(2)) corresponding to the companion matrix of x^n - 1. It can be given by the number of n X n invertible matrices over GF(2) divided by the number of n X n circulant invertible matrices over GF(2) (i.e., the centralizer of the companion matrix of x^n - 1).
If m is odd, x^m-1 has no multiple roots so that every matrix with characteristic polynomial x^m-1 also has x^m-1 as its minimal polynomial. Hence, a(m) = A089035(m). - Geoffrey Critzer, Jul 24 2025

Crossrefs

Formula

a(n) = A002884(n) / A003473(n). If n is an odd prime, then a(n) = A089035(n).

A329822 The minimum weight of a Boolean function of algebraic degree at most n-3 whose support contains n linearly independent elements.

Original entry on oeis.org

8, 8, 12, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128
Offset: 3

Author

Christof Beierle, Nov 22 2019

Keywords

Comments

Equivalently, a(n) is the minimum number for which there exists a subset S of GF(2)^n with a(n) elements which spans GF(2)^n as a vector space and Sum_{s in S} f(s) = 0 for all n-bit Boolean functions of algebraic degree at most 2.

Crossrefs

A052928(n+2) gives the minimum weight of a Boolean function of algebraic degree at most n-2 whose support contains n linearly independent elements (n >= 2).

Programs

  • Mathematica
    Drop[#, 3] &@ CoefficientList[Series[2 x^3*(4 - 4 x + 2 x^2 - 2 x^3 + x^4)/(1 - x)^2, {x, 0, 64}], x] (* Michael De Vlieger, Nov 22 2019 *)
  • PARI
    Vec(2*x^3*(4 - 4*x + 2*x^2 - 2*x^3 + x^4) / (1 - x)^2 + O(x^60)) \\ Colin Barker, Nov 22 2019

Formula

For n = 4 and n > 5, a(n) = 2n. As exceptions, a(3) = 8, a(5) = 12. Proven in Beierle, Biryukov, Udovenko, 2019.
From Colin Barker, Nov 22 2019: (Start)
G.f.: 2*x^3*(4 - 4*x + 2*x^2 - 2*x^3 + x^4) / (1 - x)^2.
a(n) = 2*a(n-1) - a(n-2) for n>7.
(End)
E.g.f.: 2*(-1 + exp(x))*x -2*x^2 + x^3/3 + x^5/60. - Stefano Spezia, Nov 22 2019

A326932 The number of permutations of GF(2^n) that are of the form x -> g(x), where g is a polynomial with coefficients in GF(2).

Original entry on oeis.org

2, 4, 36, 1536, 22500000, 263303591362560, 20851424802623573443244703744000, 504371920429767576352765364956611950142002504147895582720000000
Offset: 1

Author

Christof Beierle, Oct 22 2019

Keywords

Comments

Let q be a prime power. Each function from GF(q) to itself can be uniquely represented by a polynomial in GF(q)[X] of degree at most q-1. A polynomial g in GF(q)[X] is said to be a permutation polynomial, if the function x -> g(x) is a permutation of GF(q). a(n) gives the number of permutation polynomials in GF(2^n)[X] of degree at most 2^n-1 whose coefficients are all in the prime field GF(2).
Let GF(p) be a subfield of GF(q). The permutations of GF(q) of the form x -> g(x), where g is a polynomial with coefficients in GF(p), form a subgroup of the permutations of GF(q) (see Carlitz and Hayes, 1972).

Crossrefs

Cf. A001037.

Programs

  • Mathematica
    Block[{p}, p[n_] := p[n] = DivisorSum[n, (MoebiusMu[n/#]*2^#/n) &]; Array[Times @@ Map[p[#]!*#^p[#] &, Divisors@ #] &, 11]] (* Michael De Vlieger, Jul 08 2020 *)

Formula

a(n) = Product_{d|n} p(d)!*d^p(d), where p(d) is the number of irreducible polynomials over GF(2) of degree d (i.e., sequence A001037). Proven more generally in Carlitz and Hayes, 1972.