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 A152049 #15 Sep 24 2013 20:55:26 %S A152049 0,0,1,1,3,2,9,9,23,29,89,72,315,375,899,1031,3855,3886,13797,12000, %T A152049 42328,59989,178529,138256,647969,859841,2101143,2370917,9204061, %U A152049 8911060,34636833,33556537,105508927,168423669,464635937 %N A152049 Number of conjugacy classes of primitive elements in GF(2^n) which have trace 0. %C A152049 Also number of primitive polynomials of degree n over GF(2) whose second-highest coefficient is 0. %C A152049 Always less than A011260 (and exactly one half of it when 2^n-1 is prime). %F A152049 a(n) = A192211(n)/n. [_Joerg Arndt_, Jul 03 2011] %e A152049 a(3)=1 because of the two primitive degree 3 polynomials over GF(2), namely t^3+t+1 and t^3+t^2+1, only the former has a zero next-to-highest coefficient. %e A152049 Similarly, a(13)=315, because of half (4096) of the 8192 elements of GF(2^13) have trace 0 and all except 0 (since 1 has trace 1) are primitive, so there are 4095/13=315 conjugacy classes of primitive elements of trace 0. %o A152049 (GAP) %o A152049 a := function(n) %o A152049 local q,k,cnt,x; q:=2^n; k:=GF(2,n); cnt:=0; %o A152049 for x in k do %o A152049 if Trace(k, GF(2), x)=0*Z(2) and Order(x)=q-1 then %o A152049 cnt := cnt+1; %o A152049 fi; %o A152049 od; %o A152049 return cnt/n; %o A152049 end; %o A152049 for n in [1..32] do Print (a(n), ", "); od; %Y A152049 Cf. A192507 (GF(3^n)), A192508 (GF(5^n)), A192509 (GF(7^n)), A192510 (GF(11^n)), A192511 (GF(13^n)). %K A152049 nonn,hard,more %O A152049 1,5 %A A152049 _David A. Madore_, Nov 21 2008 %E A152049 More terms (13797...8911060) by _Joerg Arndt_, Jun 26 2011. %E A152049 More terms (34636833...464635937) by _Joerg Arndt_, Jul 03 2011.