OFFSET
1,1
EXAMPLE
245 is a term because 245 = 5*7^2 = 7^2 + 14^2 and 7 is not the sum of two nonzero squares.
1764 is not a term because 1764 = 2^2*3^2*7^2.
MATHEMATICA
nR[n_]:=(SquaresR[2, n] + Plus@@Pick[{-4, 4}, IntegerQ/@ Sqrt[{n, n/2}]])/8; Select[ Range[10^4], nR[#] > 0 && Mod[FactorInteger[#][[-1, 1]], 4] == 3 &] (* Giovanni Resta, Jun 29 2016 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Altug Alkan, Jun 29 2016
STATUS
approved