Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.
Make a sequence for this?
I've been exploring a family of functions and noticed a pattern in the continuity of their highest-order derivatives. Here's a list of the pattern I noticed:
n: {0, 0, 1, 1, 2, 2, 3, 3, 4, 4, ...} (so I'm just getting pairs that keep increasing)
k: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ...}
These values are corresponding.
I'd like to make a sequence that generalizes this pattern, but can't think of any. Any ideas?
In other words, for k=1 I get n=0. k is the independent variable here.
1 Antwort
- vor 10 JahrenBeste Antwort
n = ⌊(ℕ-1)/2⌋ = ⌈(ℕ-1)/2⌉ - (ℕ mod 2)
k = ℕ
Where ℕ refers to the Natural numbers = {1, 2, 3, ...}
⌊…⌋ is the floor function (Rounddown).
⌈…⌉ is the ceiling function (Roundup).
Just replace ℕ with k if you want to use Σ notation.