FACTORIAL(0)+Σ(SERIESOF("1/x!",100)) or SUM(SERIESOF("1/x!",100,0)) give the result as 2.7182818284590455 which is quite close to e value of 2.71828182845904523536028747135266249775724709369995... (sequence A001113 in OEIS).
+
+
Σ(SERIESOF("1/x!",100))
+
+
( 1 to 100 only) is missing the original 1, and hence can be written as Σ(SERIESOF("1/x!",100,0))
+
+
∑(0..100@"1/x!")
+
+
also works
+
+
+
SUM((0..100).$("1/x!")) is another answer.
5. Create 3x4x5x6 array and fill with numbers 1 to 100
5. Create 3x4x5x6 array and fill with numbers 1 to 100