A281437 Primes of the form 25*n^2 + 25*n + 47.
47, 97, 197, 347, 547, 797, 1097, 1447, 1847, 2297, 2797, 3347, 3947, 4597, 5297, 6047, 8597, 9547, 11597, 12697, 17597, 18947, 20347, 23297, 24847, 28097, 31547, 33347, 37097, 39047, 41047, 45197, 49547, 51797, 61297, 66347, 68947, 71597, 74297, 77047, 79847
Offset: 1
Keywords
Examples
197 is a term as it is a prime corresponding to n=2: 25*4 + 25*2 + 47 = 197.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomial
Crossrefs
Programs
-
Maple
select(isprime, [seq(25*n^2 + 25*n + 47, n=0..200)]); # Robert Israel, Dec 12 2024
-
Mathematica
Select[Range[0,100]//25#^2+25#+47&, PrimeQ]
-
PARI
for(n=0, 100, isprime(p=25*n^2+25*n+47)&& print1(p ", "))
Comments