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.
%I A132447 #30 Mar 29 2024 06:15:03 %S A132447 3,7,11,19,37,67,131,285,529,1033,2053,4179,8219,16427,32771,65581, %T A132447 131081,262183,524327,1048585,2097157,4194307,8388641,16777243, %U A132447 33554441,67108935,134217767,268435465,536870917,1073741907,2147483657 %N A132447 First primitive GF(2)[X] polynomial of degree n. %H A132447 Robert Israel, <a href="/A132447/b132447.txt">Table of n, a(n) for n = 1..330</a> %H A132447 Rich Schroeppel, <a href="http://richard.schroeppel.name:8015/hpc/hpc-spec">Hasty Pudding Cipher Specification on archive.org</a>, (revised May 1999 ed.), June 1998. (The numbers are called "Swizpoly numbers" here, except that they start with 0 for some reason.) %H A132447 <a href="/index/Ge#GF2X">Index entries for sequences operating on GF(2)[X]-polynomials</a> %e A132447 a(5)=37, or 100101 in binary, representing the GF(2)[X] polynomial X^5+X^2+1, because it has degree 5 and is primitive, contrary to X^5, X^5+1, X^5+x^1, X^5+X^1+1 and X^5+X^2. %p A132447 f:= proc(n) local k,L,i,X; %p A132447 for k from 2^n+1 by 2 do %p A132447 L:= convert(k,base,2); %p A132447 if Primitive(add(L[i]*X^(i-1),i=1..n+1)) mod 2 then return k fi %p A132447 od %p A132447 end proc: %p A132447 map(f, [$1..40]); # _Robert Israel_, Nov 05 2023 %t A132447 f[n_] := If[n == 1, 3, Module[{k, L, i, X}, For[k = 2^n+1, True, k = k+2, L = IntegerDigits[k, 2]; If[PrimitivePolynomialQ[Sum[L[[i]]*X^(i-1), {i, 1, n+1}], 2], Return[k]]]]]; %t A132447 Table[f[n], {n, 1, 40}] (* _Jean-François Alcover_, Mar 29 2024, after _Robert Israel_ *) %Y A132447 a(n) is the smallest member of A091250 at least 2^n. A132448(n) = a(n)-2^n, giving a more compact representation. Cf. A132449, similar, with restriction to at most 5 terms. Cf. A132451, similar, with restriction to exactly 5 terms. Cf. A132453, similar, with restriction to minimal number of terms. %K A132447 nonn %O A132447 1,1 %A A132447 _Francois R. Grieu_, Aug 22 2007