login
Primes of the form 3n^2 + 10.
1

%I #6 Sep 08 2022 08:46:01

%S 13,37,157,373,877,1093,1597,5557,6637,7213,10453,11173,13477,14293,

%T 22717,23773,36973,38317,41077,43933,48397,53077,57973,61357,70237,

%U 75853,77773,89797,93997,104917,109453,116437,123637,141277

%N Primes of the form 3n^2 + 10.

%H Vincenzo Librandi, <a href="/A201480/b201480.txt">Table of n, a(n) for n = 1..5000</a>

%t Select[Table[3n^2+10,{n,0,1000}],PrimeQ]

%o (Magma) [a: n in [0..400] | IsPrime(a) where a is 3*n^2+10];

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Dec 02 2011