A182332 Primes of the form n^3 + n - 1.
29, 67, 349, 1009, 3389, 4111, 5849, 9281, 15649, 19709, 35969, 46691, 59357, 79549, 97381, 132701, 140659, 166429, 250109, 389089, 474629, 531521, 658589, 804449, 830677, 884831, 1000099, 1092829, 1157729, 1295137, 1405039, 1520989, 1601729, 1728119, 1906747
Offset: 1
Keywords
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
PARI
for(n=1,1e4,if(isprime(t=n^3+n-1),print1(t", "))) \\ Charles R Greathouse IV, Apr 25 2012
Comments