login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A366861
Largest elements of triples (a, b, c) with a > b > c = 1 such that ab+c, ac+b and bc+a are perfect squares.
3
9, 12, 19, 24, 28, 33, 40, 51, 52, 57, 60, 64, 73, 84, 96, 99, 105, 112, 116, 129, 136, 144, 145, 156, 163, 177, 180, 184, 201, 204, 217, 220, 231, 232, 243, 249, 260, 264, 273, 276, 280, 288, 289, 291, 295, 312, 336, 339, 352, 355, 364, 369, 376, 385, 388, 393, 420, 424, 435, 441, 448
OFFSET
1,1
COMMENTS
Equivalently, numbers a such that there exists 1 < b < a such that ab+1 and a+b are perfect squares.
When a = b+2, then ab+1 = (b+1)^2, so there remains only the condition that a+b = 2b+2 = (2m)^2 for some integer m >= 2 (since the square must be even and b > c = 1, so m > 1). Thus, all a = 2*m^2 + 1 with m >= 2, A058331(2..) = 9, 19, 33, ..., are in this sequence.
LINKS
Wendy Appleby, Find all triples..., Number Theory group on LinkedIn.com, Oct 25 2023.
EXAMPLE
a(1) = 9 is in the sequence because for b = 7, we have that ab+1 = 8^2 and a+b = 4^2 both are squares (whence ab+c, ac+b and bc+a are squares for c = 1).
a(2) = 12 is in the sequence because for b = 4, we have ab+1 = 7^2 and a+b = 4^2 both squares.
PROG
(PARI) is(n)=for(b=2, n-1, issquare(n*b+1)&&issquare(n+b)&&return(1))
select(is, [1..456])
(PARI) is(n) = {
for(i = sqrtint(n+2)+!issquare(n+2), sqrtint(2*n-1),
if(issquare(n*(i^2-n)+1),
return(1)
)
);
0
} \\ faster than prog above \\ David A. Corneth, Jan 17 2024
CROSSREFS
Cf. A000290 (the squares), A058331.
Sequence in context: A072702 A357185 A366865 * A364343 A157973 A057577
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, Oct 25 2023
STATUS
approved