OFFSET
1,1
LINKS
Wendy Appleby, Find all triples..., Number Theory group on LinkedIn.com, Oct 25 2023.
EXAMPLE
a(1) = 9 because {9,4,1} is the smallest 3-set {a,b,c} such that ab+c, ac+b and bc+a are squares, here: 9*7 + 1 = 64 and 9*1 + 7 = 16 = 7*1 + 9.
PROG
(PARI) is(a)=for(b=2, a-1, for(c = 1, b-1, issquare(a*b+c)&& issquare(a*c+b)&& issquare(b*c+a)&& return(1))
select(is, [1..456])
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, Oct 25 2023
STATUS
approved