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

@ -8,19 +8,15 @@ for n = 2 to 1000
.
print "First 99 Mertens numbers:"
write " "
numfmt 0 2
numfmt 2 0
for n = 1 to 99
write mertens[n] & " "
if n mod 10 = 9
print ""
.
if n mod 10 = 9 : print ""
.
for n = 1 to 1000
if mertens[n] = 0
zeros += 1
if mertens[n - 1] <> 0
crosses += 1
.
if mertens[n - 1] <> 0 : crosses += 1
.
.
print ""