(In reply to
partial answer by Larry)
These remain the only two answers through n=300:
digits 1000
for n0=1:300
n=vpa(n0);
v=(n*n+11*n-4)*factorial(n)+33*vpa(13)^n+4;
sr=round(sqrt(v));
if sr*sr==v
disp ([sr n v sr*sr])
end
end
sets show square root, n and f(n) twice.
[ 21, 1.0, 441.0, 441]
[ 75, 2.0, 5625.0, 5625]
|
Posted by Charlie
on 2021-06-18 13:25:53 |