Data update

This commit is contained in:
Ingy döt Net 2025-06-11 20:16:52 -04:00
parent 72eb4943cb
commit 4d5544505c
2347 changed files with 62432 additions and 16731 deletions

View file

@ -6,12 +6,8 @@ for i to mu_max
.
for i = 2 to sqroot
if mu[i] = 1
for j = i step i to mu_max
mu[j] *= -i
.
for j = i * i step i * i to mu_max
mu[j] = 0
.
for j = i step i to mu_max : mu[j] *= -i
for j = i * i step i * i to mu_max : mu[j] = 0
.
.
for i = 2 to mu_max
@ -25,10 +21,8 @@ for i = 2 to mu_max
mu[i] = -1
.
.
numfmt 0 3
numfmt 3 0
for i = 1 to 100
write mu[i]
if i mod 10 = 0
print ""
.
if i mod 10 = 0 : print ""
.