A176549 Primes of the form 2*n^2+6*n+1.
37, 109, 541, 757, 1009, 1297, 1621, 2377, 6841, 7561, 8317, 9109, 11701, 12637, 15661, 16741, 19009, 23977, 25309, 28081, 34057, 38917, 40609, 42337, 44101, 47737, 51517, 55441, 57457, 59509, 65881, 70309, 72577, 82009, 84457, 99901
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[a: n in [0..300] | IsPrime(a) where a is 2*n^2+6*n+1]; // Vincenzo Librandi, Jul 26 2012
-
Mathematica
Select[Table[2 n^2 + 6 n + 1, {n, 2000}], PrimeQ] (* Vincenzo Librandi, Jul 26 2012 *)
Extensions
Removed an obviously incorrect part of the definition - R. J. Mathar, Apr 21 2010
Comments