A208293 Numbers n such that (n^2+1)/26 is prime.
21, 31, 109, 125, 135, 151, 161, 229, 281, 291, 359, 369, 385, 525, 541, 551, 619, 629, 645, 671, 681, 749, 759, 801, 879, 941, 1009, 1019, 1035, 1149, 1165, 1175, 1399, 1425, 1435, 1529, 1539, 1555, 1565, 1581, 1669, 1685, 1695, 1799, 1851, 1919, 1945, 1971
Offset: 1
Keywords
Examples
a(3)=109 because (109^2+1)/26 = 457 is prime. 109 = sqrt(26*457-1) = sqrt(8*1485+1).
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[10000], PrimeQ[(#^2 + 1)/26] &] (* T. D. Noe, Feb 28 2012 *)
-
PARI
is(n)=isprime((n^2+1)/26) \\ Charles R Greathouse IV, May 22 2017
Comments