A122131 Numbers n such that n^12 + 488669 is prime.
616980, 764400, 933660, 1051050, 1730820, 1758120, 2467920, 3093090, 3164070, 3461640, 3696420, 3890250, 3923010, 3950310, 4051320, 4075890, 4196010, 4286100, 4324320, 4337970, 4389840, 4556370, 4561830, 4720170, 4793880
Offset: 1
References
- Paulo Ribenboim, The Little Book of Big Primes, Springer Verlag, 1996.
Links
- Alois P. Heinz, Table of n, a(n) for n = 1..10000 (first 138 terms from Vincenzo Librandi)
- Dan Ismailescu and Yunkyu James Lee, Polynomially growing integer sequences all whose terms are composite, arXiv:2501.04851 [math.NT], 2025. See p. 2.
- Eric Weisstein's World of Mathematics, Bouniakowsky Conjecture
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomial
Programs
-
Magma
[n: n in [0..10^7] | IsPrime(n^12+488669)]; // Vincenzo Librandi, May 03 2014
-
Mathematica
a = {}; Do[If[PrimeQ[x^12 + 488669], AppendTo[a, x]], {x, 616979, 10000000}]; a (* Artur Jasinski, Dec 31 2006 *) Select[Range[10^7], PrimeQ[#^12 + 488669] &] (* Vincenzo Librandi, May 03 2014 *)
-
PARI
is(n)=isprime(n^12+488669) \\ Charles R Greathouse IV, Jun 06 2017
Extensions
Edited by N. J. A. Sloane, May 07 2007
Comments