cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A206309 Villegas-Zagier polynomial V(3*n) evaluated at x=0.

Original entry on oeis.org

1, -2, -152, -6848, -8103296, 22483912960, -8062284861440, 196434444070666240, 532650564250569441280, 2039228675045199496806400, -5209573728611533514689740800, 1172773847164346785332278906060800, -14811687653648930753369603156895334400, -612441229040578815278149020969838051328000
Offset: 0

Views

Author

Joerg Arndt, Feb 06 2012

Keywords

Comments

Numbers B_k in Villegas/Zagier "Which primes are sums of two cubes?"

References

  • H. Cohen, Number Theory. Volume I: Tools and Diophantine Equations, Springer-Verlag, 2007, p. 378.

Crossrefs

The first column of A166243.

Programs

  • PARI
    { A206309(n) = my(p0, p1, q); p0 = 0; p1 = 1; for(m=1, 3*n, q = (8*x^3-1)*deriv(p1) - (16*(m-1)+3)*x^2*p1 - 4*(m-1)*(2*(m-1)-1)*x*p0; p0 = p1; p1 = q; ); subst(p1,x,0); } \\ Max Alekseyev, Dec 05 2017

Extensions

Edited by Max Alekseyev, Dec 05 2017