Data update

This commit is contained in:
Ingy dot Net 2024-04-19 16:56:29 -07:00
parent 0df55f9f24
commit aec8ed51b6
1045 changed files with 18889 additions and 2777 deletions

View file

@ -9,9 +9,10 @@ func pow_mod b power modulus .
.
return x
.
numfmt 0 4
for k = 2 step 2 to 10
print "The first 50 Curzon numbers using a base of" & k & ":"
numfmt 0 0
print "First 50 Curzon numbers using a base of " & k & ":"
numfmt 0 4
n = 1
count = 0
repeat
@ -21,7 +22,7 @@ for k = 2 step 2 to 10
count += 1
if count <= 50
write " " & n
if count mod 10 = 0
if count mod 9 = 0
print ""
.
.