login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A218356 Minimal order of degree-n irreducible polynomials over GF(3). 7

%I #20 Oct 24 2022 07:44:10

%S 1,4,13,5,11,7,1093,32,757,44,23,35,797161,547,143,17,1871,19,1597,25,

%T 14209,67,47,224,8951,398581,109,29,59,31,683,128,299,103,71,95,

%U 13097927,2851,169,352,83,43,431,115,181,188,1223,97,491,151,12853,53,107

%N Minimal order of degree-n irreducible polynomials over GF(3).

%C a(n) < 3^n.

%C For n > 2, a(n) <= A143663(n). For odd prime n, a(n) = A143663(n). - _Max Alekseyev_, Apr 30 2022

%H Max Alekseyev, <a href="/A218356/b218356.txt">Table of n, a(n) for n = 1..796</a> (first 100 terms from Alois P. Heinz)

%F a(n) = min(M(n)) with M(n) = {d : d|(3^n-1)} \ U(n-1) and U(n) = M(n) union U(n-1) for n>0, U(0) = {}.

%F a(n) = A212906(n,1) = A213224(n,2).

%p M:= proc(n) M(n):= numtheory[divisors](3^n-1) minus U(n-1) end:

%p U:= proc(n) U(n):= `if`(n=0, {}, M(n) union U(n-1)) end:

%p a:= n-> min(M(n)[]):

%p seq(a(n), n=1..60);

%t M[n_] := M[n] = Divisors[3^n - 1]~Complement~U[n - 1];

%t U[n_] := U[n] = If[n == 0, {}, M[n]~Union~U[n - 1]];

%t a[n_] := Min[M[n]];

%t Table[a[n], {n, 1, 60}] (* _Jean-François Alcover_, Oct 24 2022, after _Alois P. Heinz_ *)

%Y Cf. A143663, A212906, A213224, A235366.

%K nonn

%O 1,2

%A _Alois P. Heinz_, Oct 27 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)