initial commit

This commit is contained in:
2025-08-03 20:16:55 -07:00
commit 87a130499d
89 changed files with 10241 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
module _48
let series n =
[1..n]
|> List.map (fun d-> System.Numerics.BigInteger.Pow(bigint d, d))
|> List.fold (+) 0I
let seriesEnd =
series 1000
|> common.lastDigits 10