OFFSET
1,1
LINKS
Ben Whitmore, Table of n, a(n) for n = 1..67
FORMULA
x^5 + a(n)*x + A371558(n) is irreducible and solvable by radicals.
EXAMPLE
-40 is in the sequence twice because x^5 - 40*x + 64 and x^5 - 40*x + 832 are both irreducible and solvable by radicals, and (-40, 64) and (-40, 832) are both primitive pairs.
MATHEMATICA
pairs = Join @@ Table[
Select[{b, Abs[#1 - b] #2/5} & @@@
Sort[SolveValues[x^2 - (6b + 5y^4)x + 25b^2 == 0 && y > 0, {x, y}, Integers]],
Max[Last /@ FactorInteger[GCD @@ #]] < 4 &&
AllTrue[#, IntegerQ] &&
IrreduciblePolynomialQ[x^5 + #1x + #2 & @@ #] &
],
{b, -1, -1000, -1}
];
pairs[[All, 1]]
CROSSREFS
KEYWORD
sign
AUTHOR
Ben Whitmore, Mar 28 2024
STATUS
approved