A286636 Even numbers that are a sum of two squares plus 1.
2, 6, 10, 14, 18, 26, 30, 38, 42, 46, 50, 54, 62, 66, 74, 82, 86, 90, 98, 102, 110, 114, 118, 122, 126, 138, 146, 150, 154, 158, 170, 174, 182, 186, 194, 198, 206, 222, 226, 230, 234, 242, 246, 258, 262, 266, 270, 278, 282, 290, 294, 306, 314, 318, 326, 334, 338, 350, 354, 362, 366, 370, 374, 378, 390, 398
Offset: 1
Keywords
Programs
-
Mathematica
Select[Range[2, 400, 2], SquaresR[2, # - 1] != 0 &]
Comments