File:First members of harmonic sequence.svg
Summary
Description |
English: First ten members of the harmonic sequence .
Deutsch: Die ersten zehn Folgenglieder der harmonischen Folge . |
Date | |
Source | Own work |
Author | Stephan Kulla (User:Stephan Kulla) |
Other versions |
|
SVG development | |
Source code | Python codeimport numpy as np
import matplotlib.pyplot as plt
# number of shown sequence members
nmax = 10
ns = np.arange(1., nmax+0.1, 1.)
plt.plot(ns, 1/ns, "o")
plt.xlim(ns[0]-1, ns[-1]+1)
plt.ylim(0, (1/ns).max()+0.1)
plt.axhline(0, color="black")
plt.savefig("First members of harmonic sequence.svg")
|
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
![]() ![]() |
This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. |
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
|