OFFSET
1,3
COMMENTS
Discriminant of Fermat polynomials.
F(0)=0, F(1)=1 and F(n) = 3x F(n - 1) -2 F(n - 2) if n>1.
LINKS
Muniru A Asiru, Table of n, a(n) for n = 1..39
Rigoberto Flórez, Robinson Higuita, and Alexander Ramírez, The resultant, the discriminant, and the derivative of generalized Fibonacci polynomials, arXiv:1808.01264 [math.NT], 2018.
Eric Weisstein's World of Mathematics, Discriminant
Eric Weisstein's World of Mathematics, Fermat Polynomial
MAPLE
seq(2^(n*(n-1)/2)*3^((n-1)*(n-2))*n^(n-3), n=1..12); # Muniru A Asiru, Dec 07 2018
MATHEMATICA
F[0] = 0; F[1] = 1; F[n_] := F[n] = 3 x F[n - 1] - 2 F[n - 2];
a[n_] := Discriminant[F[n], x];
Array[a, 11] (* Jean-François Alcover, Dec 07 2018 *)
PROG
(PARI) a(n) = 2^(n*(n-1)/2) * 3^((n-1)*(n-2)) * n^(n-3); \\ Michel Marcus, Dec 07 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Rigoberto Florez, Aug 20 2018
STATUS
approved