Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,16 @@
PRINT "The tau functions for the first 100 positive integers are:"
PRINT
FOR N = 1 TO 100
IF N < 3 THEN
LET T = N
ELSE
LET T = 2
FOR A = 2 TO INT((N+1)/2)
IF REMAINDER (N, A) = 0 THEN LET T = T + 1
NEXT A
END IF
PRINT " "; T;
IF REMAINDER (N, 10) = 0 THEN PRINT
NEXT N
END