login
A174308
Values of the family of polynomials y = Sum_{z = 0..n-1} x^z at point x = discriminant of y.
8
1, 2, 7, -3855, 246109501, 3658981728433681, 22537999301860113141522943, -85070267212918892756053780436965654527, 273892802259521776518514883585359984420603636167980521, 1000000010000000100000001000000010000000100000001000000010000000100000001
OFFSET
1,2
MATHEMATICA
Clear[x]; s = {}; Do[pol = Simplify[(x^n - 1)/(x - 1)]; d = Discriminant[pol, x]; AppendTo[s, pol /. x -> d], {n, 1, 10}]; s
PROG
(PARI) a(n) = my(p=sum(k=0, n-1, x^k)); subst(p, x, poldisc(p)); \\ Michel Marcus, Mar 02 2023
KEYWORD
sign
AUTHOR
Artur Jasinski, Mar 15 2010
EXTENSIONS
One more term from Michel Marcus, Mar 02 2023
STATUS
approved