A224217 Numbers b such that b^2 + 4*b + 9 is prime.
4, 10, 34, 46, 70, 76, 94, 112, 124, 160, 166, 196, 202, 244, 256, 292, 334, 340, 370, 412, 430, 454, 460, 490, 502, 514, 532, 550, 574, 586, 592, 622, 664, 712, 724, 754, 766, 784, 790, 796, 802, 832, 850, 874, 886, 916, 952, 994
Offset: 1
Keywords
Programs
-
Mathematica
Select[Range[1000],PrimeQ[#^2+4#+9]&] (* Harvey P. Dale, Sep 23 2020 *)
Comments