OFFSET
1,1
COMMENTS
See A371553.
LINKS
Ben Whitmore, Table of n, a(n) for n = 1..95
FORMULA
x^5 + A371553(n)*x + a(n) is irreducible and solvable by radicals.
EXAMPLE
a(1) = 44 because A371553(1) = 11, and x^5 + 11*x + 44 is irreducible and solvable by radicals, and (11, 44) is a primitive pair.
MATHEMATICA
pairs = Join @@ Table[
Select[{m, 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}
];
pairs[[All, 2]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ben Whitmore, Mar 27 2024
STATUS
approved