kececinumbers 0.1.0__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,128 +1,199 @@
1
- Metadata-Version: 2.4
2
- Name: kececinumbers
3
- Version: 0.1.0
4
- Summary: Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets
5
- Home-page: https://github.com/WhiteSymmetry/kececinumbers
6
- Author: Mehmet Keçeci
7
- Author-email: Mehmet Keçeci <bilginomi@yaani.com>
8
- Maintainer: Mehmet Keçeci
9
- Maintainer-email: Mehmet Keçeci <bilginomi@yaani.com>
10
- License: MIT
11
- Project-URL: Homepage, https://github.com/WhiteSymmetry/kececinumbers
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Operating System :: OS Independent
15
- Requires-Python: >=3.9
16
- Description-Content-Type: text/markdown
17
- License-File: LICENSE
18
- Requires-Dist: numpy
19
- Requires-Dist: matplotlib
20
- Requires-Dist: numpy-quaternion
21
- Dynamic: author
22
- Dynamic: home-page
23
- Dynamic: license-file
24
- Dynamic: maintainer
25
- Dynamic: requires-python
26
-
27
- # Keçeci Numbers: Keçeci Sayıları
28
-
29
- ---
30
-
31
- ## Description / Açıklama
32
-
33
- **Keçeci Numbers (Keçeci Sayıları)**: Keçeci Numbers; An Exploration of a Dynamic Sequence Across Diverse Number Sets: This work introduces a novel numerical sequence concept termed "Keçeci Numbers." Keçeci Numbers are a dynamic sequence generated through an iterative process, originating from a specific starting value and an increment value. In each iteration, the increment value is added to the current value, and this "added value" is recorded in the sequence. Subsequently, a division operation is attempted on this "added value," primarily using the divisors 2 and 3, with the choice of divisor depending on the one used in the previous step. If division is successful, the quotient becomes the next element in the sequence. If the division operation fails, the primality of the "added value" (or its real/scalar part for complex/quaternion numbers, or integer part for rational numbers) is checked. If it is prime, an "Augment/Shrink then Check" (ASK) rule is invoked: a type-specific unit value is added or subtracted (based on the previous ASK application), this "modified value" is recorded in the sequence, and the division operation is re-attempted on it. If division fails again, or if the number is not prime, the "added value" (or the "modified value" post-ASK) itself becomes the next element in the sequence. This mechanism is designed to be applicable across various number sets, including positive and negative real numbers, complex numbers, floating-point numbers, rational numbers, and quaternions. The increment value, ASK unit, and divisibility checks are appropriately adapted for each number type. This flexibility of Keçeci Numbers offers rich potential for studying their behavior in different numerical systems. The patterns exhibited by the sequences, their convergence/divergence properties, and potential for chaotic behavior may constitute interesting research avenues for advanced mathematical analysis and number theory applications. This study outlines the fundamental generation mechanism of Keçeci Numbers and their initial behaviors across diverse number sets.
34
-
35
- ---
36
-
37
- ## Installation / Kurulum
38
-
39
- ```bash
40
- conda install bilgi::kececinumbers -y
41
-
42
- pip install kececinumbers
43
- ```
44
- https://anaconda.org/bilgi/kececinumbers
45
-
46
- https://pypi.org/project/kececinumbers/
47
-
48
- https://github.com/WhiteSymmetry/kececinumbers
49
-
50
- https://zenodo.org/records/
51
-
52
- https://zenodo.org/records/
53
-
54
- ---
55
-
56
- ## Usage / Kullanım
57
-
58
- ### Example
59
-
60
- ```python
61
- import matplotlib.pyplot as plt
62
- import random
63
- import numpy as np
64
- import math
65
- from fractions import Fraction
66
- import quaternion # pip install numpy numpy-quaternion
67
- ```
68
-
69
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-1.png?raw=true)
70
-
71
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-2.png?raw=true)
72
-
73
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-3.png?raw=true)
74
-
75
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-4.png?raw=true)
76
-
77
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-5.png?raw=true)
78
-
79
- ---
80
-
81
- ## License / Lisans
82
-
83
- This project is licensed under the MIT License. See the `LICENSE` file for details.
84
-
85
- ## Citation
86
-
87
- If this library was useful to you in your research, please cite us. Following the [GitHub citation standards](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files), here is the recommended citation.
88
-
89
- ### BibTeX
90
-
91
- ```bibtex
92
- @misc{kececi_2025_15313947,
93
- author = {Keçeci, Mehmet},
94
- title = {kececinumbers},
95
- month = may,
96
- year = 2025,
97
- publisher = {PyPI, Anaconda, Github, Zenodo},
98
- version = {0.1.0},
99
- doi = {10.5281/zenodo.},
100
- url = {https://doi.org/10.5281/zenodo.},
101
- }
102
-
103
- @misc{kececi_2025_15314329,
104
- author = {Keçeci, Mehmet},
105
- title = {Keçeci numbers},
106
- month = may,
107
- year = 2025,
108
- publisher = {Zenodo},
109
- version = {1.0.0},
110
- doi = {10.5281/zenodo.},
111
- url = {https://doi.org/10.5281/zenodo.},
112
- }
113
- ```
114
-
115
- ### APA
116
-
117
- ```
118
- Keçeci, M. (2025). kececinumbers (0.1.0). PyPI, Anaconda, GitHub, Zenodo. https://doi.org/10.5281/zenodo.
119
-
120
- Keçeci, M. (2025). Keçeci Numbers. https://doi.org/10.5281/zenodo.
121
- ```
122
-
123
- ### Chicago
124
- ```
125
- Keçeci, Mehmet. "kececinumbers". PyPI, Anaconda, GitHub, Zenodo, 01 May 2025. https://doi.org/10.5281/zenodo.
126
-
127
- Keçeci, Mehmet. "Keçeci Numbers", 01 May 2025. https://doi.org/10.5281/zenodo.
128
- ```
1
+ Metadata-Version: 2.4
2
+ Name: kececinumbers
3
+ Version: 0.1.2
4
+ Summary: Keçeci Numbers An Exploration of a Dynamic Sequence Across Diverse Number Sets
5
+ Home-page: https://github.com/WhiteSymmetry/kececinumbers
6
+ Author: Mehmet Keçeci
7
+ Author-email: bilginomi@yaani.com
8
+ Maintainer: Mehmet Keçeci
9
+ Maintainer-email: bilginomi@yaani.com
10
+ License: MIT
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Requires-Dist: numpy
18
+ Requires-Dist: matplotlib
19
+ Requires-Dist: numpy-quaternion
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: license
27
+ Dynamic: license-file
28
+ Dynamic: maintainer
29
+ Dynamic: maintainer-email
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # Keçeci Numbers: Keçeci Sayıları
35
+
36
+ [![PyPI version](https://badge.fury.io/py/kececinumbers.svg)](https://badge.fury.io/py/kececinumbers)
37
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
38
+
39
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.15377660.svg)](https://doi.org/10.5281/zenodo.15377660)
40
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.*.svg)](https://doi.org/10.5281/zenodo.*)
41
+
42
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/version.svg)](https://anaconda.org/bilgi/kececinumbers)
43
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/latest_release_date.svg)](https://anaconda.org/bilgi/kececinumbers)
44
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/platforms.svg)](https://anaconda.org/bilgi/kececinumbers)
45
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/license.svg)](https://anaconda.org/bilgi/kececinumbers)
46
+
47
+ [![Open Source](https://img.shields.io/badge/Open%20Source-Open%20Source-brightgreen.svg)](https://opensource.org/)
48
+ [![Documentation Status](https://app.readthedocs.org/projects/kececinumbers/badge/?0.2.1=main)](https://kececinumbers.readthedocs.io/en/main/?badge=main)
49
+
50
+ ---
51
+
52
+ ## Description / Açıklama
53
+
54
+ **Keçeci Numbers (Keçeci Sayıları)**: Keçeci Numbers; An Exploration of a Dynamic Sequence Across Diverse Number Sets: This work introduces a novel numerical sequence concept termed "Keçeci Numbers." Keçeci Numbers are a dynamic sequence generated through an iterative process, originating from a specific starting value and an increment value. In each iteration, the increment value is added to the current value, and this "added value" is recorded in the sequence. Subsequently, a division operation is attempted on this "added value," primarily using the divisors 2 and 3, with the choice of divisor depending on the one used in the previous step. If division is successful, the quotient becomes the next element in the sequence. If the division operation fails, the primality of the "added value" (or its real/scalar part for complex/quaternion numbers, or integer part for rational numbers) is checked. If it is prime, an "Augment/Shrink then Check" (ASK) rule is invoked: a type-specific unit value is added or subtracted (based on the previous ASK application), this "modified value" is recorded in the sequence, and the division operation is re-attempted on it. If division fails again, or if the number is not prime, the "added value" (or the "modified value" post-ASK) itself becomes the next element in the sequence. This mechanism is designed to be applicable across various number sets, including positive and negative real numbers, complex numbers, floating-point numbers, rational numbers, and quaternions. The increment value, ASK unit, and divisibility checks are appropriately adapted for each number type. This flexibility of Keçeci Numbers offers rich potential for studying their behavior in different numerical systems. The patterns exhibited by the sequences, their convergence/divergence properties, and potential for chaotic behavior may constitute interesting research avenues for advanced mathematical analysis and number theory applications. This study outlines the fundamental generation mechanism of Keçeci Numbers and their initial behaviors across diverse number sets.
55
+
56
+ ---
57
+
58
+ ## Installation / Kurulum
59
+
60
+ ```bash
61
+ conda install bilgi::kececinumbers -y
62
+
63
+ pip install kececinumbers
64
+ ```
65
+ https://anaconda.org/bilgi/kececinumbers
66
+
67
+ https://pypi.org/project/kececinumbers/
68
+
69
+ https://github.com/WhiteSymmetry/kececinumbers
70
+
71
+ https://zenodo.org/records/15377660
72
+
73
+ https://zenodo.org/records/
74
+
75
+ ---
76
+
77
+ ## Usage / Kullanım
78
+
79
+ ### Example
80
+
81
+ ```python
82
+ import matplotlib.pyplot as plt
83
+ import random
84
+ import numpy as np
85
+ import math
86
+ from fractions import Fraction
87
+ import quaternion # pip install numpy numpy-quaternion
88
+ ```
89
+ ```python
90
+ import matplotlib.pyplot as plt
91
+ import kececinumbers as kn
92
+
93
+ # Matplotlib grafiklerinin notebook içinde gösterilmesini sağla
94
+ %matplotlib inline
95
+
96
+ print("Trying interactive mode (will prompt for input in the console/output area)...")
97
+ interactive_sequence = kn.get_interactive()
98
+ if interactive_sequence:
99
+ kn.plot_numbers(interactive_sequence, title="Keçeci Numbers")
100
+
101
+ print("Done with examples.")
102
+ print("Keçeci Numbers Module Loaded.")
103
+ print("This module provides functions to generate and plot Keçeci Numbers.")
104
+ print("Example: Use 'import kececinumbers as kn' in your script/notebook.")
105
+ print("\nAvailable functions:")
106
+ print("- kn.get_interactive()")
107
+ print("- kn.get_with_params(kececi_type, iterations, ...)")
108
+ print("- kn.get_random_type(iterations, ...)")
109
+ print("- kn.plot_numbers(sequence, title)")
110
+ print("- kn.unified_generator(...) (low-level)")
111
+ print("\nAccess definitions with: kn.DEFINITIONS")
112
+ print("\nAccess type constants like: kn.TYPE_COMPLEX")
113
+ ```
114
+ ---
115
+ Trying interactive mode (will prompt for input in the console/output area)...
116
+
117
+ Keçeci Number Types:
118
+
119
+ 1: Positive Real Numbers (Integer: e.g., 1)
120
+
121
+ 2: Negative Real Numbers (Integer: e.g., -3)
122
+
123
+ 3: Complex Numbers (e.g., 3+4j)
124
+
125
+ 4: Floating-Point Numbers (e.g., 2.5)
126
+
127
+ 5: Rational Numbers (e.g., 3/2, 5)
128
+
129
+ 6: Quaternions (scalar start input becomes q(s,s,s,s): e.g., 1 or 2.5)
130
+
131
+ Please select Keçeci Number Type (1-6): 1
132
+
133
+ Enter the starting number (e.g., 0 or 2.5, complex:3+4j, rational: 3/4, quaternions: 1) : 0
134
+
135
+ Enter the base scalar value for increment (e.g., 9): 9
136
+
137
+ Enter the number of iterations (positive integer: e.g., 30): 30
138
+
139
+ ---
140
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-1.png?raw=true)
141
+
142
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-2.png?raw=true)
143
+
144
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-3.png?raw=true)
145
+
146
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-4.png?raw=true)
147
+
148
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-5.png?raw=true)
149
+
150
+ ---
151
+
152
+ ## License / Lisans
153
+
154
+ This project is licensed under the MIT License. See the `LICENSE` file for details.
155
+
156
+ ## Citation
157
+
158
+ If this library was useful to you in your research, please cite us. Following the [GitHub citation standards](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files), here is the recommended citation.
159
+
160
+ ### BibTeX
161
+
162
+ ```bibtex
163
+ @misc{kececi_2025_15313947,
164
+ author = {Keçeci, Mehmet},
165
+ title = {kececinumbers},
166
+ month = may,
167
+ year = 2025,
168
+ publisher = {PyPI, Anaconda, Github, Zenodo},
169
+ version = {0.1.0},
170
+ doi = {10.5281/zenodo.15377660},
171
+ url = {https://doi.org/10.5281/zenodo.15377660},
172
+ }
173
+
174
+ @misc{kececi_2025_15314329,
175
+ author = {Keçeci, Mehmet},
176
+ title = {Keçeci numbers},
177
+ month = may,
178
+ year = 2025,
179
+ publisher = {Zenodo},
180
+ version = {1.0.0},
181
+ doi = {10.5281/zenodo.},
182
+ url = {https://doi.org/10.5281/zenodo.},
183
+ }
184
+ ```
185
+
186
+ ### APA
187
+
188
+ ```
189
+ Keçeci, M. (2025). kececinumbers (0.1.0). PyPI, Anaconda, GitHub, Zenodo. https://doi.org/10.5281/zenodo.15377660
190
+
191
+ Keçeci, M. (2025). Keçeci Numbers. https://doi.org/10.5281/zenodo.
192
+ ```
193
+
194
+ ### Chicago
195
+ ```
196
+ Keçeci, Mehmet. "kececinumbers". PyPI, Anaconda, GitHub, Zenodo, 01 May 2025. https://doi.org/10.5281/zenodo.15377660
197
+
198
+ Keçeci, Mehmet. "Keçeci Numbers", 01 May 2025. https://doi.org/10.5281/zenodo.
199
+ ```
@@ -1,102 +1,166 @@
1
- # Keçeci Numbers: Keçeci Sayıları
2
-
3
- ---
4
-
5
- ## Description / Açıklama
6
-
7
- **Keçeci Numbers (Keçeci Sayıları)**: Keçeci Numbers; An Exploration of a Dynamic Sequence Across Diverse Number Sets: This work introduces a novel numerical sequence concept termed "Keçeci Numbers." Keçeci Numbers are a dynamic sequence generated through an iterative process, originating from a specific starting value and an increment value. In each iteration, the increment value is added to the current value, and this "added value" is recorded in the sequence. Subsequently, a division operation is attempted on this "added value," primarily using the divisors 2 and 3, with the choice of divisor depending on the one used in the previous step. If division is successful, the quotient becomes the next element in the sequence. If the division operation fails, the primality of the "added value" (or its real/scalar part for complex/quaternion numbers, or integer part for rational numbers) is checked. If it is prime, an "Augment/Shrink then Check" (ASK) rule is invoked: a type-specific unit value is added or subtracted (based on the previous ASK application), this "modified value" is recorded in the sequence, and the division operation is re-attempted on it. If division fails again, or if the number is not prime, the "added value" (or the "modified value" post-ASK) itself becomes the next element in the sequence. This mechanism is designed to be applicable across various number sets, including positive and negative real numbers, complex numbers, floating-point numbers, rational numbers, and quaternions. The increment value, ASK unit, and divisibility checks are appropriately adapted for each number type. This flexibility of Keçeci Numbers offers rich potential for studying their behavior in different numerical systems. The patterns exhibited by the sequences, their convergence/divergence properties, and potential for chaotic behavior may constitute interesting research avenues for advanced mathematical analysis and number theory applications. This study outlines the fundamental generation mechanism of Keçeci Numbers and their initial behaviors across diverse number sets.
8
-
9
- ---
10
-
11
- ## Installation / Kurulum
12
-
13
- ```bash
14
- conda install bilgi::kececinumbers -y
15
-
16
- pip install kececinumbers
17
- ```
18
- https://anaconda.org/bilgi/kececinumbers
19
-
20
- https://pypi.org/project/kececinumbers/
21
-
22
- https://github.com/WhiteSymmetry/kececinumbers
23
-
24
- https://zenodo.org/records/
25
-
26
- https://zenodo.org/records/
27
-
28
- ---
29
-
30
- ## Usage / Kullanım
31
-
32
- ### Example
33
-
34
- ```python
35
- import matplotlib.pyplot as plt
36
- import random
37
- import numpy as np
38
- import math
39
- from fractions import Fraction
40
- import quaternion # pip install numpy numpy-quaternion
41
- ```
42
-
43
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-1.png?raw=true)
44
-
45
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-2.png?raw=true)
46
-
47
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-3.png?raw=true)
48
-
49
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-4.png?raw=true)
50
-
51
- ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-5.png?raw=true)
52
-
53
- ---
54
-
55
- ## License / Lisans
56
-
57
- This project is licensed under the MIT License. See the `LICENSE` file for details.
58
-
59
- ## Citation
60
-
61
- If this library was useful to you in your research, please cite us. Following the [GitHub citation standards](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files), here is the recommended citation.
62
-
63
- ### BibTeX
64
-
65
- ```bibtex
66
- @misc{kececi_2025_15313947,
67
- author = {Keçeci, Mehmet},
68
- title = {kececinumbers},
69
- month = may,
70
- year = 2025,
71
- publisher = {PyPI, Anaconda, Github, Zenodo},
72
- version = {0.1.0},
73
- doi = {10.5281/zenodo.},
74
- url = {https://doi.org/10.5281/zenodo.},
75
- }
76
-
77
- @misc{kececi_2025_15314329,
78
- author = {Keçeci, Mehmet},
79
- title = {Keçeci numbers},
80
- month = may,
81
- year = 2025,
82
- publisher = {Zenodo},
83
- version = {1.0.0},
84
- doi = {10.5281/zenodo.},
85
- url = {https://doi.org/10.5281/zenodo.},
86
- }
87
- ```
88
-
89
- ### APA
90
-
91
- ```
92
- Keçeci, M. (2025). kececinumbers (0.1.0). PyPI, Anaconda, GitHub, Zenodo. https://doi.org/10.5281/zenodo.
93
-
94
- Keçeci, M. (2025). Keçeci Numbers. https://doi.org/10.5281/zenodo.
95
- ```
96
-
97
- ### Chicago
98
- ```
99
- Keçeci, Mehmet. "kececinumbers". PyPI, Anaconda, GitHub, Zenodo, 01 May 2025. https://doi.org/10.5281/zenodo.
100
-
101
- Keçeci, Mehmet. "Keçeci Numbers", 01 May 2025. https://doi.org/10.5281/zenodo.
102
- ```
1
+ # Keçeci Numbers: Keçeci Sayıları
2
+
3
+ [![PyPI version](https://badge.fury.io/py/kececinumbers.svg)](https://badge.fury.io/py/kececinumbers)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
6
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.15377660.svg)](https://doi.org/10.5281/zenodo.15377660)
7
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.*.svg)](https://doi.org/10.5281/zenodo.*)
8
+
9
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/version.svg)](https://anaconda.org/bilgi/kececinumbers)
10
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/latest_release_date.svg)](https://anaconda.org/bilgi/kececinumbers)
11
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/platforms.svg)](https://anaconda.org/bilgi/kececinumbers)
12
+ [![Anaconda-Server Badge](https://anaconda.org/bilgi/kececinumbers/badges/license.svg)](https://anaconda.org/bilgi/kececinumbers)
13
+
14
+ [![Open Source](https://img.shields.io/badge/Open%20Source-Open%20Source-brightgreen.svg)](https://opensource.org/)
15
+ [![Documentation Status](https://app.readthedocs.org/projects/kececinumbers/badge/?0.2.1=main)](https://kececinumbers.readthedocs.io/en/main/?badge=main)
16
+
17
+ ---
18
+
19
+ ## Description / Açıklama
20
+
21
+ **Keçeci Numbers (Keçeci Sayıları)**: Keçeci Numbers; An Exploration of a Dynamic Sequence Across Diverse Number Sets: This work introduces a novel numerical sequence concept termed "Keçeci Numbers." Keçeci Numbers are a dynamic sequence generated through an iterative process, originating from a specific starting value and an increment value. In each iteration, the increment value is added to the current value, and this "added value" is recorded in the sequence. Subsequently, a division operation is attempted on this "added value," primarily using the divisors 2 and 3, with the choice of divisor depending on the one used in the previous step. If division is successful, the quotient becomes the next element in the sequence. If the division operation fails, the primality of the "added value" (or its real/scalar part for complex/quaternion numbers, or integer part for rational numbers) is checked. If it is prime, an "Augment/Shrink then Check" (ASK) rule is invoked: a type-specific unit value is added or subtracted (based on the previous ASK application), this "modified value" is recorded in the sequence, and the division operation is re-attempted on it. If division fails again, or if the number is not prime, the "added value" (or the "modified value" post-ASK) itself becomes the next element in the sequence. This mechanism is designed to be applicable across various number sets, including positive and negative real numbers, complex numbers, floating-point numbers, rational numbers, and quaternions. The increment value, ASK unit, and divisibility checks are appropriately adapted for each number type. This flexibility of Keçeci Numbers offers rich potential for studying their behavior in different numerical systems. The patterns exhibited by the sequences, their convergence/divergence properties, and potential for chaotic behavior may constitute interesting research avenues for advanced mathematical analysis and number theory applications. This study outlines the fundamental generation mechanism of Keçeci Numbers and their initial behaviors across diverse number sets.
22
+
23
+ ---
24
+
25
+ ## Installation / Kurulum
26
+
27
+ ```bash
28
+ conda install bilgi::kececinumbers -y
29
+
30
+ pip install kececinumbers
31
+ ```
32
+ https://anaconda.org/bilgi/kececinumbers
33
+
34
+ https://pypi.org/project/kececinumbers/
35
+
36
+ https://github.com/WhiteSymmetry/kececinumbers
37
+
38
+ https://zenodo.org/records/15377660
39
+
40
+ https://zenodo.org/records/
41
+
42
+ ---
43
+
44
+ ## Usage / Kullanım
45
+
46
+ ### Example
47
+
48
+ ```python
49
+ import matplotlib.pyplot as plt
50
+ import random
51
+ import numpy as np
52
+ import math
53
+ from fractions import Fraction
54
+ import quaternion # pip install numpy numpy-quaternion
55
+ ```
56
+ ```python
57
+ import matplotlib.pyplot as plt
58
+ import kececinumbers as kn
59
+
60
+ # Matplotlib grafiklerinin notebook içinde gösterilmesini sağla
61
+ %matplotlib inline
62
+
63
+ print("Trying interactive mode (will prompt for input in the console/output area)...")
64
+ interactive_sequence = kn.get_interactive()
65
+ if interactive_sequence:
66
+ kn.plot_numbers(interactive_sequence, title="Keçeci Numbers")
67
+
68
+ print("Done with examples.")
69
+ print("Keçeci Numbers Module Loaded.")
70
+ print("This module provides functions to generate and plot Keçeci Numbers.")
71
+ print("Example: Use 'import kececinumbers as kn' in your script/notebook.")
72
+ print("\nAvailable functions:")
73
+ print("- kn.get_interactive()")
74
+ print("- kn.get_with_params(kececi_type, iterations, ...)")
75
+ print("- kn.get_random_type(iterations, ...)")
76
+ print("- kn.plot_numbers(sequence, title)")
77
+ print("- kn.unified_generator(...) (low-level)")
78
+ print("\nAccess definitions with: kn.DEFINITIONS")
79
+ print("\nAccess type constants like: kn.TYPE_COMPLEX")
80
+ ```
81
+ ---
82
+ Trying interactive mode (will prompt for input in the console/output area)...
83
+
84
+ Keçeci Number Types:
85
+
86
+ 1: Positive Real Numbers (Integer: e.g., 1)
87
+
88
+ 2: Negative Real Numbers (Integer: e.g., -3)
89
+
90
+ 3: Complex Numbers (e.g., 3+4j)
91
+
92
+ 4: Floating-Point Numbers (e.g., 2.5)
93
+
94
+ 5: Rational Numbers (e.g., 3/2, 5)
95
+
96
+ 6: Quaternions (scalar start input becomes q(s,s,s,s): e.g., 1 or 2.5)
97
+
98
+ Please select Keçeci Number Type (1-6): 1
99
+
100
+ Enter the starting number (e.g., 0 or 2.5, complex:3+4j, rational: 3/4, quaternions: 1) : 0
101
+
102
+ Enter the base scalar value for increment (e.g., 9): 9
103
+
104
+ Enter the number of iterations (positive integer: e.g., 30): 30
105
+
106
+ ---
107
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-1.png?raw=true)
108
+
109
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-2.png?raw=true)
110
+
111
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-3.png?raw=true)
112
+
113
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-4.png?raw=true)
114
+
115
+ ![Keçeci Numbers Example](https://github.com/WhiteSymmetry/kececinumbers/blob/main/examples/kn-5.png?raw=true)
116
+
117
+ ---
118
+
119
+ ## License / Lisans
120
+
121
+ This project is licensed under the MIT License. See the `LICENSE` file for details.
122
+
123
+ ## Citation
124
+
125
+ If this library was useful to you in your research, please cite us. Following the [GitHub citation standards](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files), here is the recommended citation.
126
+
127
+ ### BibTeX
128
+
129
+ ```bibtex
130
+ @misc{kececi_2025_15313947,
131
+ author = {Keçeci, Mehmet},
132
+ title = {kececinumbers},
133
+ month = may,
134
+ year = 2025,
135
+ publisher = {PyPI, Anaconda, Github, Zenodo},
136
+ version = {0.1.0},
137
+ doi = {10.5281/zenodo.15377660},
138
+ url = {https://doi.org/10.5281/zenodo.15377660},
139
+ }
140
+
141
+ @misc{kececi_2025_15314329,
142
+ author = {Keçeci, Mehmet},
143
+ title = {Keçeci numbers},
144
+ month = may,
145
+ year = 2025,
146
+ publisher = {Zenodo},
147
+ version = {1.0.0},
148
+ doi = {10.5281/zenodo.},
149
+ url = {https://doi.org/10.5281/zenodo.},
150
+ }
151
+ ```
152
+
153
+ ### APA
154
+
155
+ ```
156
+ Keçeci, M. (2025). kececinumbers (0.1.0). PyPI, Anaconda, GitHub, Zenodo. https://doi.org/10.5281/zenodo.15377660
157
+
158
+ Keçeci, M. (2025). Keçeci Numbers. https://doi.org/10.5281/zenodo.
159
+ ```
160
+
161
+ ### Chicago
162
+ ```
163
+ Keçeci, Mehmet. "kececinumbers". PyPI, Anaconda, GitHub, Zenodo, 01 May 2025. https://doi.org/10.5281/zenodo.15377660
164
+
165
+ Keçeci, Mehmet. "Keçeci Numbers", 01 May 2025. https://doi.org/10.5281/zenodo.
166
+ ```