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”).

A355812
Values t of the solutions to 1/s^2 + 1/t^2 = 1/p^2 + 1/q^2 where p,q < t.
3
35, 55, 56, 63, 70, 72, 80, 85, 90, 105, 110, 112, 117, 120, 126, 140, 144, 152, 154, 156, 160, 165, 168, 170, 175, 176, 180, 182, 189, 203, 208, 210, 216, 220, 221, 224, 231, 234, 240, 245, 252, 255, 270, 275, 280, 286, 288, 297, 304, 306, 308, 312, 315, 320, 330, 336
OFFSET
1,1
LINKS
Jianing Song, Table of n, a(n) for n = 1..307 (all terms <= 1500)
EXAMPLE
1/5^2 + 1/35^2 = 1/7^2 + 1/7^2, so 35 is a term.
1/10^2 + 1/55^2 = 1/11^2 + 1/22^2, so 55 is a term.
PROG
(PARI) isA355812(n) = for(p=1, n-1, for(q=1, n-1, r=1/(1/p^2+1/q^2-1/n^2); if(r==r\1 && issquare(r), return(1)))); return(0)
CROSSREFS
Sequence in context: A039312 A043915 A359448 * A318572 A171082 A340269
KEYWORD
nonn
AUTHOR
Jianing Song, Jul 18 2022
STATUS
approved