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 A246156 #17 Aug 22 2014 16:47:10 %S A246156 5,9,15,17,21,23,27,29,33,35,39,43,45,49,51,53,57,63,65,69,71,75,77, %T A246156 79,81,83,85,89,93,95,99,101,105,107,111,113,119,121,123,125,127,129, %U A246156 133,135,139,141,147,149,151,153,155,159,161,163,165,169,173,175,177,179,181,183,187,189,195,197,199,201 %N A246156 Odd reducible polynomials over GF(2), coded in binary. (Polynomials with the constant term 1 that are reducible over GF(2)). %C A246156 Self-inverse permutation A193231 maps each term of this sequence to some term of A246158 and vice versa. %H A246156 Antti Karttunen, <a href="/A246156/b246156.txt">Table of n, a(n) for n = 1..13846</a> %H A246156 <a href="/index/Ge#GF2X">Index entries for sequences operating on GF(2)[X]-polynomials</a> %e A246156 5, which is 101 in binary, encodes polynomial x^2 + 1, which factorizes as (x+1)(x+1) over GF(2), (5 = A048720(3,3)), thus it is reducible in that polynomial ring. Also, its constant term is 1, (not zero), thus 5 is a member of this sequence. %p A246156 filter:= proc(n) local L,p,x; %p A246156 L:= convert(n,base,2); %p A246156 p:= add(L[i]*x^(i-1),i=1..nops(L)); %p A246156 not (Irreduc(p) mod 2) %p A246156 end proc: %p A246156 select(filter,[seq(2*i+1,i=1..100)]); # _Robert Israel_, Aug 21 2014 %o A246156 (Scheme, with _Antti Karttunen_'s IntSeq-library) %o A246156 (define A246156 (COMPOSE A091242 (MATCHING-POS 1 1 (COMPOSE odd? A091242)))) %Y A246156 Intersection of A091242 and A005408 (odd numbers). %Y A246156 A246157 is a subsequence. Cf. also A048720, A193231, A246158. %K A246156 base,nonn %O A246156 1,1 %A A246156 _Antti Karttunen_, Aug 20 2014