A282241 Numbers that are the sum of 3 distinct nonzero squares in two ways with symmetrical differences: a(n) = (p-a)^2+p^2+(p+b)^2 = (q-b)^2+q^2+(q+a)^2, p, q, a, b, positive integer, a
62, 89, 101, 122, 134, 146, 150, 161, 173, 185, 189, 203, 206, 209, 218, 230, 234, 248, 254, 257, 266, 269, 270, 278, 281, 285, 299, 305, 314, 317, 321, 326, 329, 338, 341, 342, 347, 356, 357, 362, 374, 377, 378, 386, 389, 398, 401, 404, 405, 414, 419, 422, 425, 426, 434, 437, 441, 446, 449, 458
Offset: 1
Keywords
Examples
122 = (5-1)^2+5^2+(5+4)^2 = (7-4)^2+7^2+(7+1)^2, with symmetrical differences 1 and 4. 248 = (6-2)^2+6^2+(6+8)^2 = (10-8)^2+10^2+(10+2)^2, with a=2, b=8.
Programs
-
PARI
is_sym_sum(n)=local(x,e=0,a,b,p);x=1;while(x^2
a,p=1;while(p^2<=n/3&&e==0,if(p^2+(p+b)^2+(p+a+b)^2==n,e=1);p+=1)));a+=1);x+=1);e for(i=3,500,if(is_sym_sum(i),print1(i,", ")))
Comments