A123077 Primes of the form (1+2n+3n^2+4n^3)/2.
5, 71, 293, 7103, 32213, 40487, 50069, 87623, 161831, 211007, 238949, 337343, 852263, 922037, 1328447, 1421909, 1955399, 2607989, 3061703, 3744551, 4121087, 4318469, 4731941, 5400359, 5879231, 7198421, 9356927, 10400501, 10764863
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[a: n in [0..250] | IsPrime(a) where a is (1 + 2*n + 3*n^2 + 4*n^3) div 2]; // Vincenzo Librandi, Mar 21 2013
-
Mathematica
Select[Table[(1 + 2 n + 3 n^2 + 4 n^3)/2, {n, 0, 200}], PrimeQ] (* Vincenzo Librandi, Mar 21 2013 *)
Comments