fix parentheses

This commit is contained in:
filifa
2025-07-20 20:05:01 -04:00
parent dd24aac8bb
commit f8d7a1d825
4 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
"source": [
"# [Counting Summations](https://projecteuler.net/problem=76)\n",
"\n",
"We want $p(100) - 1$, where $p(n)$ is the [partition function](https://en.wikipedia.org/wiki/Partition_function_(number_theory)). We subtract 1 because $p(n)$ counts $n$ by itself as a partition of $n$, but we only want partitions composed of two or more numbers.\n",
"We want $p(100) - 1$, where $p(n)$ is the [partition function](https://w.wiki/EoNj). We subtract 1 because $p(n)$ counts $n$ by itself as a partition of $n$, but we only want partitions composed of two or more numbers.\n",
"\n",
"Guess what? SageMath has this built-in."
]