summaryrefslogtreecommitdiff
path: root/math/math.tex
diff options
context:
space:
mode:
authorPaul Jungeblut <paul.jungeblut@gmail.com>2017-05-12 14:56:58 +0200
committerPaul Jungeblut <paul.jungeblut@gmail.com>2017-05-12 14:56:58 +0200
commit80cf506dad289a0078683ad7da29f3c4d26135f9 (patch)
treea8a7fa3c67a6addc2603da7d2ae1f30e13bcfbdc /math/math.tex
parent92f02961b71c82c91d2968c0b1f392c89d0dc57f (diff)
Fixing error in recursion for partition number.
Diffstat (limited to 'math/math.tex')
-rw-r--r--math/math.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/math.tex b/math/math.tex
index 186ac3a..01ecb52 100644
--- a/math/math.tex
+++ b/math/math.tex
@@ -190,10 +190,10 @@ Sei $p \geq 3$ eine Primzahl, $a \in \mathbb{Z}$:
B_n = \sum\limits_{k = 0}^{n - 1} B_k\binom{n-1}{k}
= \sum\limits_{k = 0}^{n}\stirlingII{n}{k}$\\
- \textsc{Int. Partitions} &
+ \textsc{Partitions} &
$f(1,1) = 1 \quad
f(n,k) = 0 \text{ für } k > n \quad
- f(n,k) = f(n-k,k) + f(n,k-1)$ \\
+ f(n,k) = f(n-k,k) + f(n-1,k-1)$ \\
\bottomrule
\end{tabular}
\end{flushleft}