OFFSET
1,2
COMMENTS
If k is a term, then so is k * m^4 for all m.
All terms are even.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(6) = 80 is a term because 80 = 80 * 1 = 20 * 4 with 80 + 1 = 81 = 9^2 and 20 - 4 = 16 = 4^2 squares.
MAPLE
filter:= proc(n) local D;
D:= select(t -> t^2 >= n, NumberTheory:-Divisors(n));
ormap(t -> issqr(t + n/t), D) and ormap(t -> issqr(t - n/t), D)
end proc:
filter(0):= true:
select(filter, [seq(i, i=0..10000, 2)]);
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Robert Israel, Jul 02 2026
STATUS
approved
