OFFSET
1,2
COMMENTS
Cauchy showed that this list is complete [see Dickson].
REFERENCES
L. E. Dickson, History of the Theory of Numbers, Vol. II, Chelsea NY 1992, see pages 18 and 284.
MAPLE
# Maple program that verifies that there are no other terms below 100
ans:=[]; for n from 1 to 100 do
t1:=ceil(sqrt(3*n)); t2:=floor(sqrt(4*n)); sw:=1;
for i from t1 to t2 do if n-i mod 2 = 0 then sw:=-1; fi; od:
if sw=1 then ans:=[op(ans), n]; fi; od:
ans;
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
N. J. A. Sloane, Sep 09 2015
STATUS
approved