A331950 Addends k > 0 such that the polynomial x^3 + x^2 + k produces a record of its Hardy-Littlewood Constant.
1, 17, 101, 1487, 13301, 19421, 91127
Offset: 1
References
- Henri Cohen, Number Theory, Volume II: Analytic and Modern Tools, GTM Vol. 240, Springer, 2007; see pp. 208-209.
Links
- Karim Belabas, Henri Cohen, Computation of the Hardy-Littlewood constant for quadratic polynomials, PARI/GP script, 2020.
- Karim Belabas, Henri Cohen, Computation of the Hardy-Littlewood constant for cubic polynomials, PARI/GP script, 2020.
- Henri Cohen, High precision computation of Hardy-Littlewood constants, preprint, 1998. [pdf copy, with permission]
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomial.
- Wikipedia, Bateman-Horn conjecture.
Programs
-
PARI
\\ The functions HardyLittlewood2 and HardyLittlewood3 are provided at the Belabas, Cohen links. hl3max=0; for(add=0,101,my(hl=HardyLittlewood3(n^3+n^2+add));if(hl>hl3max,print1(add,", ");hl3max=hl))
Comments