A123099 Primes of the form 1 + 2*k + 3*k^2 + 4*k^3 + 5*k^4.
547, 35983, 111049, 2738179, 6076687, 15860209, 53530639, 685318537, 1043755441, 1670649571, 2347515619, 9761226721, 10330521727, 12188475769, 15042514033, 25486958659, 30383211043, 40608270601, 45701408383
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A056579.
Programs
-
Magma
[ a: n in [0..400] | IsPrime(a) where a is 1+2*n+3*n^2+4*n^3+5*n^4]; // Vincenzo Librandi, Nov 13 2010
-
Mathematica
Select[Table[1+2n+3n^2+4n^3+5n^4,{n,500}],PrimeQ] (* Harvey P. Dale, Oct 29 2022 *)
Comments