A339273 Sums of two nonzero even squares.
8, 20, 32, 40, 52, 68, 72, 80, 100, 104, 116, 128, 136, 148, 160, 164, 180, 200, 208, 212, 232, 244, 260, 272, 288, 292, 296, 320, 328, 340, 356, 360, 388, 392, 400, 404, 416, 424, 436, 452, 464, 468, 488, 500, 512, 520, 544, 548, 580, 584, 592, 596, 612, 628, 640, 648, 656
Offset: 1
Examples
20 is in the sequence since it is the sum of two nonzero even squares, 2^2 + 4^2 = 4 + 16 = 20.
Programs
-
Mathematica
Table[If[Sum[Mod[i + 1, 2] Mod[n - i + 1, 2] (Floor[Sqrt[i]] - Floor[Sqrt[i - 1]]) (Floor[Sqrt[n - i]] - Floor[Sqrt[n - i - 1]]), {i, Floor[n/2]}] > 0, n, {}], {n, 700}] // Flatten