OFFSET
1,1
COMMENTS
The squarefree part is always 5.
LINKS
Matthew Moore, Theorems and Algorithms Associated with Solving the General Quintic [Appears to give incorrect formula for the Brioschi quintic]
Tito Piezas III and Eric Weisstein's World of Mathematics, Brioschi Quintic Form.
Index entries for linear recurrences with constant coefficients, signature (6,-15,20,-15,6,-1).
FORMULA
a(n) = 25*n^4*(1728*n-1). - Klaus Brockhaus, Oct 28 2007
G.f.: 25*x*(1729*x^4 + 44938*x^3+114048*x^2+44918*x+1727) / (x-1)^6. - Colin Barker, Sep 02 2013
MATHEMATICA
Table[25n^4(1728n-1), {n, 1, 100}]
PROG
(PARI) a(n) = my(p=poldisc(x^5 - 10*n*x^3 + 45*n^2*x - n^2)); sqrtint(p/core(p)); \\ Michel Marcus, Mar 02 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Oct 26 2007, Oct 28 2007
EXTENSIONS
Corrected by Klaus Brockhaus, Oct 28 2007
More terms from Colin Barker, Sep 02 2013
Name corrected by Amiram Eldar, Mar 02 2023
STATUS
approved