``mathxlab.experiments.spiral_suite`` ====================================== Prime-visualization spiral suite (E124–E126). .. contents:: On this page :local: :depth: 2 Quickstart ---------- .. code-block:: python from mathxlab.experiments.spiral_suite import run_e124, run_e125, ParamsE124 .. list-table:: Public API :header-rows: 1 :widths: 20 10 70 * - Name - Kind - Summary * - ``ParamsE124`` - class - Parameters for E124 (Klauber triangle). * - ``ParamsE125`` - class - Parameters for E125 (Sacks spiral). * - ``ParamsE126`` - class - Parameters for E126 (hexagonal number spiral). * - ``run_e124`` - function - E124: Klauber triangle: primes in a square-to-square triangle. * - ``run_e125`` - function - E125: Sacks spiral: primes on r=sqrt(n), θ=2π sqrt(n). * - ``run_e126`` - function - E126: Hexagonal number spiral: primes on a hex grid spiral. Reference --------- Classes ~~~~~~~ .. autoclass:: mathxlab.experiments.spiral_suite.ParamsE124 :members: :member-order: bysource :show-inheritance: .. autoclass:: mathxlab.experiments.spiral_suite.ParamsE125 :members: :member-order: bysource :show-inheritance: .. autoclass:: mathxlab.experiments.spiral_suite.ParamsE126 :members: :member-order: bysource :show-inheritance: Functions ~~~~~~~~~ .. autofunction:: mathxlab.experiments.spiral_suite.run_e124 .. autofunction:: mathxlab.experiments.spiral_suite.run_e125 .. autofunction:: mathxlab.experiments.spiral_suite.run_e126