From bd59e9086178019b48f10db3ad2ca8356c96e2c0 Mon Sep 17 00:00:00 2001 From: runterer Date: Sat, 28 May 2022 19:49:04 +0200 Subject: wip working on presentation --- buch/papers/zeta/python/primzahlfunktion.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 buch/papers/zeta/python/primzahlfunktion.py (limited to 'buch/papers/zeta/python/primzahlfunktion.py') diff --git a/buch/papers/zeta/python/primzahlfunktion.py b/buch/papers/zeta/python/primzahlfunktion.py new file mode 100644 index 0000000..9434de9 --- /dev/null +++ b/buch/papers/zeta/python/primzahlfunktion.py @@ -0,0 +1,24 @@ +import matplotlib.pyplot as plt +import numpy as np + +primzahlfunktion = [0, 0, 0, 0] +x = [0, 1-1e-12, 1, 2-1e-12] +x_last = 1 +value = 0 +for i in range(2, 30, 1): + new_value = value + 1 + for j in range(2, i, 1): + if i % j == 0: + new_value = value + value = new_value + primzahlfunktion.append(new_value) + x_last += 1 + x.append(x_last) + primzahlfunktion.append(new_value) + x.append(x_last + 1 - 1e-12) + + +plt.rcParams.update({"pgf.texsystem": "pdflatex"}) +plt.plot(x, primzahlfunktion) +plt.show() + -- cgit v1.2.1