A256777 Primes of form n^2 + 625.
641, 661, 769, 821, 881, 1109, 1201, 1301, 1409, 2069, 2389, 2741, 3329, 3541, 3761, 3989, 4721, 6101, 6709, 7349, 7681, 8369, 9461, 12289, 14081, 14549, 16001, 18049, 19121, 20789, 25589, 28181, 31601, 32309, 33749, 35221, 35969, 37489, 38261, 39041, 39829
Offset: 1
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Haskell
a256777 n = a256777_list !! (n-1) a256777_list = [x | x <- map (+ 625) a000290_list, a010051' x == 1]
-
Mathematica
Select[Range[200]^2+625,PrimeQ] (* Harvey P. Dale, Aug 27 2025 *)
-
PARI
list(lim)=if(lim<641,return([])); my(v=List(),t); forstep(n=4, sqrtint(lim\1-625), 2, if(isprime(t=n^2+625), listput(v,t))); Vec(v) \\ Charles R Greathouse IV, Aug 18 2017
Comments