Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
max = 2200;
|
||||
maxsq = max^2;
|
||||
d = Range[max]^2;
|
||||
Dynamic[{a, b, Length[d]}]
|
||||
Do[
|
||||
Do[
|
||||
c = Range[1, Floor[(maxsq - a^2 - b^2)^(1/2)]];
|
||||
dposs = a^2 + b^2 + c^2;
|
||||
d = Complement[d, dposs]
|
||||
,
|
||||
{b, Floor[(maxsq - a^2)^(1/2)]}
|
||||
]
|
||||
,
|
||||
{a, Floor[maxsq^(1/2)]}
|
||||
]
|
||||
Sqrt[d]
|
||||
Loading…
Add table
Add a link
Reference in a new issue