diff options
| author | Paul Jungeblut <paul.jungeblut@gmail.com> | 2017-05-12 14:56:58 +0200 |
|---|---|---|
| committer | Paul Jungeblut <paul.jungeblut@gmail.com> | 2017-05-12 14:56:58 +0200 |
| commit | 80cf506dad289a0078683ad7da29f3c4d26135f9 (patch) | |
| tree | a8a7fa3c67a6addc2603da7d2ae1f30e13bcfbdc /math/math.tex | |
| parent | 92f02961b71c82c91d2968c0b1f392c89d0dc57f (diff) | |
Fixing error in recursion for partition number.
Diffstat (limited to 'math/math.tex')
| -rw-r--r-- | math/math.tex | 4 |
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} |
