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,15 @@
PRINT "The tau functions for the first 100 positive integers are:": PRINT
FOR N = 1 TO 100
IF N < 3 THEN
T = N
ELSE
T = 2
FOR A = 2 TO (N + 1) \ 2
IF N MOD A = 0 THEN T = T + 1
NEXT A
END IF
PRINT USING "###"; T;
IF N MOD 10 = 0 THEN PRINT
NEXT N
END