A161907 Primes of the form n^3+n+91.
101, 313, 829, 1433, 1831, 5021, 8111, 12281, 19801, 24509, 36061, 55001, 110731, 125141, 149021, 205529, 238481, 314591, 358073, 422041, 531613, 658681, 778871, 804541, 1030493, 1481749, 1861081, 2146909, 2571581, 3512051, 3581821
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1500
Crossrefs
Cf. A133160.
Programs
-
Magma
[ a: n in [0..200] | IsPrime(a) where a is n^3+n+91 ];
-
Mathematica
Select[Table[n^3 + n + 91, {n, 170}], PrimeQ] (* Alonso del Arte, Jan 31 2011 *)