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.

Showing 1-6 of 6 results.

A344197 Numbers m > 5 such that x^m + x^5 + 1 is irreducible over GF(2) while x^m + x^5 + x^4 + x + 1 = x^m + (x + 1)^5 is not.

Original entry on oeis.org

20, 300, 2660, 4500
Offset: 1

Views

Author

Jianing Song, May 11 2021

Keywords

Comments

Conjecture: Given e >= 0, odd numbers r, k > 0, a > 2^e*r*k, consider the following two statements:
(A) x^m + (x^k + 1)^(2^e*r) is irreducible over GF(2);
(B) x^m + x^(2^e*r*k) + 1 is irreducible over GF(2),
then:
(i) (A) implies (B);
(ii) if (B) is true and (A) is false, then:
(a) gcd(m,r) > 1;
(b) if prime p | gcd(m,r*k), then p*ord_p(2) | m;
(c) if e > 0, then m is odd.
Here ord(2,p) is the multiplicative order of 2 modulo p.
In other words, assuming that (B) is true, (A) is false if and only if (a), (b), (c) hold. (For the "if" part, note that if d = gcd(m,2^e*r) > 1 then x^m + (x^k + 1)^(2^e*r) must be reducible, since it is divisible by x^(m/d) + (x^k + 1)^(2^e*r/d).)
Here is the case r = 5, k = 1, e = 0, and (ii) means that m is in this sequence if and only if x^m + x^5 + 1 is irreducible and m is a multiple of 20.

Examples

			20 is a term because x^20 + x^5 + 1 is irreducible over GF(2) but x^20 + x^5 + x^4 + x + 1 is not: x^20 + x^5 + x^4 + x + 1 = (x^4 + x + 1)*(x^8 + x^7 + x^4 + x^3 + x^2 + x + 1)*(x^8 + x^7 + x^6 + x + 1).
		

Crossrefs

Similar sequences: A344177 (r=3, k=1), A344198 (r=3, k=3), A344199 (r=3, k=5), this sequence (r=5, k=1), A344200 (r=5, k=3).

Programs

  • PARI
    isA344197(n) = polisirreducible(Mod(x^n+x^5+1, 2)) && !polisirreducible(Mod(x^n+x^5+x^4+x+1, 2))

A344198 Numbers m > 9 such that x^m + x^9 + 1 is irreducible over GF(2) while x^m + x^9 + x^6 + x^3 + 1 = x^m + (x^3 + 1)^3 is not.

Original entry on oeis.org

12, 18, 30, 36, 54, 60, 84, 156, 198, 390, 540, 1950, 4788
Offset: 1

Views

Author

Jianing Song, May 11 2021

Keywords

Comments

Conjecture: Given e >= 0, odd numbers r, k > 0, a > 2^e*r*k, consider the following two statements:
(A) x^m + (x^k + 1)^(2^e*r) is irreducible over GF(2);
(B) x^m + x^(2^e*r*k) + 1 is irreducible over GF(2),
then:
(i) (A) implies (B);
(ii) if (B) is true and (A) is false, then:
(a) gcd(m,r) > 1;
(b) if prime p | gcd(m,r*k), then p*ord_p(2) | m;
(c) if e > 0, then m is odd.
Here ord(2,p) is the multiplicative order of 2 modulo p.
In other words, assuming that (B) is true, (A) is false if and only if (a), (b), (c) hold. (For the "if" part, note that if d = gcd(m,2^e*r) > 1 then x^m + (x^k + 1)^(2^e*r) must be reducible, since it is divisible by x^(m/d) + (x^k + 1)^(2^e*r/d).)
Here is the case r = 3, k = 3, e = 0, and (ii) means that m is in this sequence if and only if x^m + x^9 + 1 is irreducible and m is a multiple of 6.
If the conjecture is true, this is also numbers m >= 10 such that x^m + x^9 + 1 is irreducible over GF(2) while x^m + x^9 + x^8 + x + 1 is not (the case r = 9, k = 1, e = 0).

Examples

			18 is a term because x^18 + x^9 + 1 is irreducible over GF(2) but x^18 + x^9 + x^6 + x^3 + 1 is not: x^18 + x^9 + x^6 + x^3 + 1 = (x^6 + x^3 + 1)*(x^12 + x^9 + 1).
		

Crossrefs

Similar sequences: A344177 (r=3, k=1), this sequence (r=3, k=3), A344199 (r=3, k=5), A344197 (r=5, k=1), A344200 (r=5, k=3).

Programs

  • PARI
    isA344198(n) = polisirreducible(Mod(x^n+x^9+1, 2)) && !polisirreducible(Mod(x^n+x^9+x^6+x^3+1, 2))

A344199 Numbers m > 15 such that x^m + x^15 + 1 is irreducible over GF(2) while x^m + x^15 + x^10 + x^5 + 1 = x^m + (x^5 + 1)^3 is not.

Original entry on oeis.org

18, 36, 60, 252, 708, 834, 900, 2178, 7722, 7980
Offset: 1

Views

Author

Jianing Song, May 11 2021

Keywords

Comments

Conjecture: Given e >= 0, odd numbers r, k > 0, a > 2^e*r*k, consider the following two statements:
(A) x^m + (x^k + 1)^(2^e*r) is irreducible over GF(2);
(B) x^m + x^(2^e*r*k) + 1 is irreducible over GF(2),
then:
(i) (A) implies (B);
(ii) if (B) is true and (A) is false, then:
(a) gcd(m,r) > 1;
(b) if prime p | gcd(m,r*k), then p*ord_p(2) | m;
(c) if e > 0, then m is odd.
Here ord(2,p) is the multiplicative order of 2 modulo p.
In other words, assuming that (B) is true, (A) is false if and only if (a), (b), (c) hold. (For the "if" part, note that if d = gcd(m,2^e*r) > 1 then x^m + (x^k + 1)^(2^e*r) must be reducible, since it is divisible by x^(m/d) + (x^k + 1)^(2^e*r/d).)
Here is the case r = 3, k = 5, e = 0, and (ii) means that m is in this sequence if and only if x^m + x^15 + 1 is irreducible, m is a multiple of 6, if m is divisible by 5 then m is a multiple of 20.

Examples

			18 is a term because x^18 + x^15 + 1 is irreducible over GF(2) but x^18 + x^15 + x^10 + x^5 + 1 is not: x^18 + x^15 + x^12 + x^3 + 1 = (x^2 + x + 1)*(x^6 + x^5 + 1)*(x^10 + x^4 + x^3 + x + 1).
		

Crossrefs

Similar sequences: A344177 (r=3, k=1), A344198 (r=3, k=3), this sequence (r=3, k=5), A344197 (r=5, k=1), A344200 (r=5, k=3).

Programs

  • PARI
    isA344199(n) = polisirreducible(Mod(x^n+x^15+1, 2)) && !polisirreducible(Mod(x^n+x^15+x^10+x^5+1, 2))

Extensions

a(9)-a(10) from Michel Marcus, May 18 2021

A344200 Numbers m > 15 such that x^m + x^15 + 1 is irreducible over GF(2) while x^m + x^15 + x^12 + x^3 + 1 = x^m + (x^3 + 1)^5 is not.

Original entry on oeis.org

20, 60, 100, 140, 260, 900, 7980, 13500
Offset: 1

Views

Author

Jianing Song, May 11 2021

Keywords

Comments

Conjecture: Given e >= 0, odd numbers r, k > 0, a > 2^e*r*k, consider the following two statements:
(A) x^m + (x^k + 1)^(2^e*r) is irreducible over GF(2);
(B) x^m + x^(2^e*r*k) + 1 is irreducible over GF(2),
then:
(i) (A) implies (B);
(ii) if (B) is true and (A) is false, then:
(a) gcd(m,r) > 1;
(b) if prime p | gcd(m,r*k), then p*ord_p(2) | m;
(c) if e > 0, then m is odd.
Here ord(2,p) is the multiplicative order of 2 modulo p.
In other words, assuming that (B) is true, (A) is false if and only if (a), (b), (c) hold. (For the "if" part, note that if d = gcd(m,2^e*r) > 1 then x^m + (x^k + 1)^(2^e*r) must be reducible, since it is divisible by x^(m/d) + (x^k + 1)^(2^e*r/d).)
Here is the case r = 5, k = 3, e = 0, and (ii) means that m is in this sequence if and only if x^m + x^15 + 1 is irreducible and m is a multiple of 20. Note that when m is divisible by 20, the result (b) above for p = 3 (if m is divisible by 3 then m is a multiple of 6) is automatically true.

Examples

			20 is a term because x^20 + x^15 + 1 is irreducible over GF(2) but x^20 + x^15 + x^12 + x^3 + 1 is not: x^20 + x^15 + x^12 + x^3 + 1 = (x^4 + x^3 + 1)*(x^8 + x^6 + x^3 + x^2 + 1)*(x^8 + x^7 + x^3 + x^2 + 1).
		

Crossrefs

Similar sequences: A344177 (r=3, k=1), A344198 (r=3, k=3), A344199 (r=3, k=5), A344197 (r=5, k=1), this sequence (r=5, k=3).

Programs

  • PARI
    isA344200(n) = polisirreducible(Mod(x^n+x^15+1, 2)) && !polisirreducible(Mod(x^n+x^15+x^12+x^3+1, 2))

Extensions

a(7)-a(8) from Jinyuan Wang, May 15 2021

A344185 a(n) = A344141(n) - 2^n.

Original entry on oeis.org

0, 3, 3, 3, 5, 3, 3, 27, 3, 9, 5, 9, 27, 33, 3, 43, 9, 9, 39, 9, 5, 3, 33, 27, 9, 27, 39, 3, 5, 3, 9, 141, 75, 27, 5, 53, 63, 99, 17, 57, 9, 39, 89, 33, 27, 3, 33, 45, 113, 29, 75, 9, 71, 125, 71, 149, 17, 99, 123, 3, 39, 105, 3, 27, 27, 9, 39, 163, 101, 43
Offset: 1

Views

Author

Jianing Song, May 11 2021

Keywords

Comments

A more intuitive version of A344141.
Every term other than the first is a member of A129771.
In A057496 it is stated that if x^n + x^3 + x^2 + x + 1 is irreducible, then so is x^n + x^3 + 1. It follows that no term can be equal to 15.
It is conjectured that no term can be of the form P_m(2^k), where P_m(x) = Product_{i>=0} (1 + x^(2^(d_i)))^(c_i) if the binary representation of m is m = Sum_{i>=0} c_i * 2^(d_i), k is an odd number. See my conjecture in A344177.

Examples

			See A344141.
		

Crossrefs

Programs

  • PARI
    A344185(n) = for(k=0, 2^n-1, if(polisirreducible(Mod(Pol(binary(2^n+k)), 2)), return(k)))

A344186 a(n) = A344142(n) - 2^n.

Original entry on oeis.org

0, 3, 3, 3, 5, 3, 3, 27, 3, 9, 5, 9, 27, 33, 3, 43, 9, 9, 39, 9, 5, 3, 33, 27, 9, 27, 39, 3, 5, 3, 9, 141, 1025, 129, 5, 513, 83, 99, 17, 57, 9, 129, 89, 33, 27, 3, 33, 45, 513, 29, 75, 9, 71, 513, 129, 149, 17, 524289, 149, 3, 39, 536870913, 3, 27, 262145, 9, 39, 513, 101, 43
Offset: 1

Views

Author

Jianing Song, May 11 2021

Keywords

Comments

A more intuitive version of A344142.
In A057496 it is stated that if x^n + x^3 + x^2 + x + 1 is irreducible, then so is x^n + x^3 + 1. It follows that no term can be equal to 15.
It is conjectured that an irreducible polynomial of degree n with 5 terms exists for every n. It follows from the conjecture that for n >= 2, a(n) is of the form 2^k + 1 or an odd number with Hamming weight 4.
It is conjectured that no term can be of the form P_m(2^k), where P_m(x) = Product_{i>=0} (1 + x^(2^(d_i)))^(c_i) if the binary representation of m is m = Sum_{i>=0} c_i * 2^(d_i), k is an odd number. See my conjecture in A344177.

Examples

			See A344142.
		

Crossrefs

Programs

  • PARI
    A344186(n) = if(n==1, 0, for(k=1, n-1, if(polisirreducible(Mod(x^n+x^k+1, 2)), return(2^k+1))); for(a=3, n-1, for(b=2, a-1, for(c=1, b-1, if(polisirreducible(Mod(x^n+x^a+x^b+x^c+1, 2)), return(2^a+2^b+2^c+1)))))) \\ Assuming that an irreducible polynomial of degree n with at most 5 terms exists for every n.
Showing 1-6 of 6 results.