A174307 Values of the family of polynomials y = x^n + x + 1 at point x = discriminant of y.
3, 7, -29821, 2750058711, 441800144752584283, 6804431770345241082279621151, -377859250831193351209596088271916078121597, 4196483202812521725112100379233057161478356010053715361355, 287968238412833577612998830601797972725819919777961202447931475131073570213331
Offset: 1
Keywords
Programs
-
Mathematica
Clear[x]; s = {}; Do[d = Discriminant[x^n + x + 1, x]; AppendTo[s, d^n + d + 1], {n, 1, 10}]; s
-
PARI
a(n) = my(p=x^n+x+1); subst(p, x, poldisc(p)); \\ Michel Marcus, Mar 02 2023
Extensions
More terms from Michel Marcus, Mar 02 2023