From 80cf506dad289a0078683ad7da29f3c4d26135f9 Mon Sep 17 00:00:00 2001 From: Paul Jungeblut Date: Fri, 12 May 2017 14:56:58 +0200 Subject: Fixing error in recursion for partition number. --- math/math.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'math/math.tex') 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} -- cgit v1.2.3