A source-audited analysis of a local additive–multiplicative coordinate system
4 August 2026
Abstract
For a strictly increasing integer sequence , the weight–level–jump (WLJ) construction reflects the next additive increment back from the current term, factors the reflected integer , and selects a canonical divisor just beyond the gap. When it exists, the identity
is exact. On the natural numbers, is the smallest prime factor of , so the construction is an exact coordinate encoding of the outcome of the sieve of Eratosthenes. On the primes, it factors the gap-reflected point ; this yields a useful divisor-window classification, an exact twin-prime column at weight , a balanced-prime subfamily, and several native conjectures. The established significance is primarily structural and organizational. It does not reprove the Fundamental Theorem of Arithmetic, lower the difficulty of twin-prime or Hardy–Littlewood problems, or presently connect to the Riemann Hypothesis.
This report audits the attached 2010 preprint, algorithms, fifth-edition project report, seven supplied figures, current project pages, OEIS records, and independent primary literature. It reconstructs the main plots on square equal-scale axes and independently verifies the prime decomposition through . The central status correction is that the project’s proposed proof of rarefaction (Conjecture 9) is mathematically plausible but incomplete in the supplied material and remains unrefereed; it must not yet be reported as an established theorem.
Executive verdict
Throughout, is a strictly increasing sequence of positive integers and
The report uses the notation requested for the project: . For the prime sequence, and . All plotted logarithms are natural logarithms, written . A cutoff “” always uses the true successor of every , even when that successor lies above . This is different from “the first primes.”
The following labels are deliberately non-interchangeable.
| Label | Meaning in this report |
|---|---|
| PROVED | A complete elementary proof is given here, or the claim is established in citable literature. |
| VERIFIED TO | An exhaustive computation covers a stated finite range; no claim is made beyond it. |
| PROPOSED THEOREM — UNREFEREED | The project reports a proof, but the available material omits essential details or lacks independent scholarly verification. |
| CONDITIONAL | The conclusion follows from explicitly stated hypotheses. |
| HEURISTIC | A model or numerical pattern, not a proof. |
| REFORMULATION / OPEN | A classical or native open problem expressed in WLJ coordinates. |
The essential move is not the identity by itself: every Euclidean division supplies identities of that form. The distinctive feature is how the divisor is selected. The next term determines the additive displacement ; the displacement determines the reflected integer ; and the arithmetic of selects the least divisor strictly beyond . Thus no factorization parameter is chosen by hand.
This is a genuine additive–multiplicative coupling at a local scale. The additive datum is one forward difference; the multiplicative datum is a distinguished factor pair of one gap-shifted integer. For primes, the reflected point lies one prime gap to the left of . The framework therefore asks a sharp question: does that additively determined integer possess a divisor in a specified interval?
The framework makes three useful contributions.
First, it offers a uniform vocabulary for any increasing sequence whose relative growth is not too fast. Natural numbers, primes, polynomial sequences, and many bounded-gap sequences are treated by the same rule. Second, it turns familiar prime patterns into geometric strata—vertical fixed-weight fibres, horizontal fixed-level fibres, and a diagonal classification boundary. Third, it creates native divisor-window questions that do not arise in quite this form before the coordinate change, especially the proposed rarefaction of the level class.
The strongest defensible significance claim is therefore:
WLJ is a canonical local coordinate system that transports next-gap information into the divisor structure of , organizes many integer sequences into comparable strata, and suggests analytic questions about divisors of gap-shifted values.
Several larger claims would be misleading.
Let and put . Define
When , define
When , set . Whenever the decomposition exists,
The classification convention is:
Ties belong to the weight class.
Proposition 2.1 (proved). The decomposition exists at index if and only if
Proof. Since , the definition requires
If the inequality holds, then , and itself is a divisor of exceeding ; the set defining is therefore nonempty. Its least element is unique. Conversely, if the inequality fails, every positive divisor of is at most , so no admissible exists. □
This criterion makes the domain transparent. Any sequence with is eventually decomposable. A bounded-jump sequence is eventually decomposable; a rapidly growing recurrence may not be.
The classification has an exact multiplicative interpretation.
Proposition 2.2 (proved). For a decomposable term,
Proof. Because , is equivalent to . If a divisor exists, minimality gives , so the term is weight-classified. If no such divisor exists, the least divisor beyond lies above , giving . □
Corollary 2.3 (level bound). Every level-classified term satisfies . Otherwise and , contradicting the minimality of .
The classification is therefore not an arbitrary comparison of factor sizes. It records whether the divisor interval immediately after the additive gap, up to the square-root barrier, is occupied or empty.
| Sequence term | Next term | Result | ||||
|---|---|---|---|---|---|---|
| 1 | 9 | 3 | 3 | Weight-classified tie | ||
| 11 | 4 | 0 by convention | 0 | 0 | Not decomposable | |
| 13 | 2 | 9 | 3 | 3 | Weight-classified twin | |
| 17 | 4 | 9 | 9 | 1 | Level-classified; composite weight | |
| 23 | 4 | 15 | 5 | 3 | Weight-classified | |
| 29 | 6 | 17 | 17 | 1 | Level-classified |
The row is particularly instructive. The factor is ignored because it lies below the strict threshold ; the selected weight is therefore , which may be composite. This is why prime-sequence weights are not generally prime.
The supplied fordiv kernel captures the definition
cleanly, but it does not validate monotonicity. Two supplied
factorization variants return [d,0,0] in the
non-decomposable case even though their normal tuple order is
[k,L,d]; the canonical return is [0,0,d]. The
older decompsieve performs a two-sided divisor search on
one integer—it is not an Eratosthenes range sieve in the standard
algorithmic sense.
The following memory-light kernel makes the contract explicit.
PARI/GP’s fordiv visits positive divisors in increasing
order; it avoids materializing the full divisor vector, although
factorization cost remains implicit.
/* Return [weight, level, jump] for integers 0 < a < b. */
wlj(a, b) =
{
my(d, ell);
if (a <= 0 || b <= a, error("wlj: require 0 < a < b"));
d = b - a;
if (a <= 2*d, return([0, 0, d]));
ell = a - d;
fordiv(ell, k,
if (k > d, return([k, ell/k, d]))
);
error("wlj: unreachable divisor state");
}
wlj_class(t) =
{
if (t[1] == 0, return("unclassified"));
if (t[1] > t[2], "level", "weight")
}
For a full natural-number interval, a genuine smallest-prime-factor sieve is asymptotically preferable to factoring each separately:
/* Smallest-prime-factor table, Eratosthenes style. */
spf_table(N) =
{
my(sp = vector(N, i, 0));
if (N >= 1, sp[1] = 1);
forprime(p = 2, N,
sp[p] = p;
if (p <= N\p,
forstep(m = p*p, N, p,
if (sp[m] == 0, sp[m] = p)
)
)
);
sp
}
/* Decompose 3,4,...,N in one pass. */
wlj_naturals(N) =
{
if (N < 3, return([]));
my(sp = spf_table(N-1));
vector(N-2, i,
my(n = i+2, ell = n-1, k = sp[ell]);
[k, ell/k, 1]
)
}
For isolated or irregular sequence terms, fordiv is the
safest exact implementation. For dense bounded ranges, an SPF table or
segmented smallest-factor sieve is preferable. For very large prime
censuses, one must generate each true successor and factor
;
reported timing alone is not a substitute for releasing the code,
checkpoints, range convention, and reproducible hashes. The relevant
language semantics are documented in the
PARI/GP
function index.
Take . Then , , and for
The weight is necessarily prime: the least divisor greater than is the smallest prime factor. The level is the largest proper divisor of . Hence
Thus level-classified naturals are precisely shifted primes ; weight-classified naturals are shifted composites. Ties occur exactly at with prime.
The Fundamental Theorem of Arithmetic (FTA) states that every integer has a unique prime-power factorization; see NIST DLMF §27.2. WLJ’s natural-number rule exposes the first step of that factorization:
Iterating the level/cofactor eventually recovers the prime factorization, with repeated smallest factors appearing as repeated steps. But the logical dependence runs from the classical arithmetic to the coordinate representation, not the other way around. WLJ does not exclude an alternative prime factorization independently; FTA does. The “unique triple” is unique because a minimum was specified.
At the sieve stage for a prime , the surviving composites first struck by are exactly those divisible by and by no smaller prime. With , this is exactly the WLJ column :
The points on are the survivors that were never struck before their own value. In that precise sense, the natural-number WLJ plane is an exact coordinate rendering of the sieve’s outcome.
Computationally, however, the supplied per-term routines are trial-division/factorization procedures. A genuine Eratosthenes sieve marks ranges of multiples and shares work across many inputs; see Melissa O’Neill’s “The Genuine Sieve of Eratosthenes” for the algorithmic distinction.
Write , , and let be the largest value of . The composite support satisfies the two exact linear inequalities
The apparent “triangle” is therefore deterministic. Its apex is
the logarithmic image of the square-root barrier. The prime values of lie on ; they represent shifted primes , not generally prime values of .
The vertical occupancy is more precise than “multiples of .” A fixed fibre consists of for which has no prime factor below . These are rough-number fibres. Their qualitative frequencies are governed by sieve products, but the saturated bitmap does not prove a Mertens asymptotic. The anti-diagonal is straight in log coordinates; would be hyperbolic only on raw axes.
For , write
Whenever the decomposition exists,
Theorem 4.1 (proved). The only non-decomposable primes are .
The 2010 preprint proves this using explicit prime-counting estimates, but its printed argument suppresses a monotonicity detail. A shorter independent repair uses Nagura’s theorem: for , there is a prime in . Hence for every prime ,
Checking the primes below leaves exactly . See Nagura’s original 1952 paper; the preprint’s alternative route cites explicit estimates of Dusart, whose later bounds are available as arXiv:1002.0442.
For decomposable , both consecutive primes are odd, so is even while , , and are odd. Moreover,
and therefore . The basic inequalities are
Combining these with Proposition 2.2 gives the complete order geometry:
The strict first inequality in the level row uses the parity refinement . These orders will explain the two 3D cones without appealing to visual density.
Theorem 4.2 (proved). For ,
If , then , so is divisible by ; the least divisor exceeding is . Conversely, and force .
One bookkeeping subtlety matters. The prime has , so it is level-classified. Thus “primes of weight ” can mean either all primes with coordinate , or only weight-classified primes in that column. Through , those two conventions differ by the single point (and a count based on lesser twin members also handles separately). Reports should state which convention they use.
A level-one prime has , hence . The original project refines level one by writing when
For ,
Therefore generation is exactly the sequence of balanced primes. This is an exact reformulation, but infinitude of balanced primes remains open. Infinitely many level-one primes would not by itself imply infinitely many balanced primes, because other generations may contribute.
The original paper listed two conjectures:
They are the same elementary fact, the second being the contrapositive of the first.
Theorem 4.3 (proved). For consecutive primes ,
Proof. If , then . If , the two endpoints are nonzero residues modulo ; primality of forces , so . Since is even, is equivalent to . □
The current OEIS project page appropriately strikes C7 and C8 from the conjecture list. They should be recorded as elementary structure, not as two independent research achievements.
Theorem 4.4 (Cube Lemma, proved). If a level-classified prime has composite weight, then
Proof. Write the composite weight as with . The factors and divide and lie below the least divisor ; therefore minimality gives . They are odd while is even, hence . The level bound gives . Consequently
The supplied fifth report contains an overbroad sentence suggesting that every proper divisor of is at most ; that is false because itself may be a proper divisor greater than . The repaired proof above needs only the two factors . The bound is sharp at : , , , and .
The observed composite-weight level primes are
This list is independently reproduced below through . The project combines a scan beyond with the published prime-gap verification through , where the maximal gap is . Any further exception within that verified range would satisfy
already inside the reported scan. This closes the five-element list through . It does not prove the global conjecture. The underlying finite prime-gap computation is due to Oliveira e Silva, Herzog, and Pardi; see their Math. Comp. paper.
A separate Python implementation was written from the definition, using integer arithmetic, an SPF sieve, exact divisor enumeration, and no reuse of the supplied PARI/GP kernels. This is a cross-check, not evidence for an asymptotic theorem.
The first seventeen prime rows agree exactly with the 2010 preprint. The only non-decomposable values are ; the composite-weight level values are exactly ; and the weight-three equivalence, level bound , and mod- equivalence have zero violations. The level share among decomposable primes at this value cutoff is
This must not be confused with the 2010 paper’s counts for the first prime indices, whose upper prime is much larger.
| Item | Statement in WLJ coordinates | Correct relation to known mathematics | Audited status (4 Aug. 2026) |
|---|---|---|---|
| C1 | Infinitely many primes with | Exactly twin primes, up to finite conventions | REFORMULATION / OPEN |
| C2 | Every odd occurs infinitely often | Fixed-weight bounded-gap refinements; not verbatim Polignac | OPEN |
| C3 | Every odd occurs infinitely often | Hardy–Littlewood-type family; does not imply balanced infinitude | OPEN |
| C4 | Level-classified weights are prime except at five listed primes | Cube Lemma plus finite census | VERIFIED TO ; OPEN GLOBALLY |
| C5 | Infinitely many generation- primes | Exactly balanced-prime infinitude | REFORMULATION / OPEN |
| C6 | Every generation is infinite | Generalized reflected-prime patterns | OPEN |
| C7 | Elementary residue fact | PROVED | |
| C8 | Contrapositive of C7 | PROVED | |
| C9 | Level-classified primes have relative density zero | Native divisor-window rarefaction problem | PROPOSED THEOREM — UNREFEREED; PUBLIC RECORD CONJECTURAL |
For a fixed weight , one necessarily has an even gap , together with
and the minimality requirement that no divisor of lies in . Thus a fixed weight mixes a finite set of possible gaps and applies additional congruence and divisor filters. Weight , for example, occurs with both and . Only collapses to one exact gap family; happens to refine gap , but this does not generalize.
If infinitely many primes had a fixed weight , finite pigeonhole would force at least one even gap to recur infinitely often. The converse fails: infinitely many occurrences of a particular gap do not force a fixed WLJ weight. C2 is therefore Polignac-type, not equivalent to Polignac’s conjecture.
Modern bounded-gap theorems do not settle C1 or C2. Zhang proved a finite bound on the liminf of consecutive prime gaps; Maynard developed a stronger multidimensional sieve; the Polymath8 project reached the unconditional record (and only under the generalized Elliott–Halberstam hypothesis). These results imply that at least one even gap at most occurs infinitely often, not that gap , every even gap, or any particular WLJ weight occurs infinitely often. See Zhang, Maynard, and Polymath8b.
Let
Since only are non-decomposable, the natural value-cutoff form is
The 2010 preprint and current OEIS records state this as Conjecture
9. The supplied fifth report labels it PROVED* and proposes
the bound
which would indeed imply C9 by the Prime Number Theorem.
The outline is coherent and worth recording accurately.
The attached HTML gives only these five steps and refers to a separate “submission manuscript” that was not supplied and could not be located as a public preprint. The analytic heart is asserted rather than proved: one needs a uniform Selberg upper bound for varying , treatment of inadmissible or degenerate triples, and an averaged singular-series estimate of the form
with all parameter ranges and small cases controlled. No contradiction was found in the strategy, and standard sieve technology makes it plausible. But a plausible architecture is not a complete proof. The defensible statement is therefore:
C9 audit conclusion. The project reports a credible proposed theorem, pending external review. On the evidence supplied, C9 is not yet an established result; the public arXiv/OEIS record remains conjectural. A falling finite-range graph cannot substitute for the missing analytic estimates.
The independent calculation gives the following value-cutoff shares.
| Decomposable primes | Level-classified | Share | |
|---|---|---|---|
| 22 | 12 | 54.55% | |
| 165 | 75 | 45.45% | |
| 1,226 | 390 | 31.81% | |
| 9,589 | 2,658 | 27.72% | |
| 78,495 | 18,353 | 23.38% |
The fifth report claims a complete value-cutoff census through : primes, decomposable, and level-classified, for a reported share . Those are valuable project measurements but were not independently reproduced here; the raw census and source code were not among the attachments.
When , level one is equivalent to being prime. Outside the exceptional region, a level-one point is therefore a three-term arithmetic progression of primes
with the right pair consecutive. The supplied project report proposes the conditional asymptotic
where is the twin-prime constant. Its separate mean-singular-series identity is consistent with Gallagher-style averaging. However, the stated hypotheses give a marginal prime-triple model and a marginal consecutive-gap model; multiplying them requires a joint assumption controlling the probability of no intervening prime inside the reflected-prime triple population. Unless that joint uniformity is added explicitly, the asymptotic should be called a heuristic prediction rather than a proved conditional theorem.
The Prime Number Theorem gives and global density zero for primes among integers. It does not imply density zero for the WLJ level class inside the primes. RH would sharpen global prime-counting errors—see the Clay Mathematics Institute—but no implication between RH and C9 is known.
Prime gaps are unbounded, with strong quantitative results due to Maynard and others; see Maynard’s large-gap theorem. Conversely, exhaustive gap tables through remain finite evidence. Neither a maximal gap of on that range nor a long numerical census proves a global WLJ statement.
For every decomposable term, set
Then
At a finite value cutoff , one has , so . The diagonal is the exact class boundary: points on or above it are weight-classified, and points below it are level-classified. These two straight lines—the diagonal and anti-diagonal cutoff—explain the gross shape before any distributional theorem is invoked.
For geometry to be visually faithful, “square” must mean more than a square raster. The plot panel must use identical - and -limits and equal data-unit scaling. Every source graph below is displayed in a square matte without distorting its pixels; the independent reproductions also enforce equal mathematical aspect.
The upper-left wing obeys
Its vertical combs are fixed odd weights . Unlike in the natural-number plot, these weights need not be prime because all divisors at or below the gap are deliberately ignored. The lower-right wing obeys ; its horizontal bands are fixed odd levels . The stronger prime bound keeps that wing near small .
The diagonal points are assigned to the weight class. The annotations identify OEIS strata, but arrows do not prove set infinitude or asymptotic density. In particular, only the comb is exactly a named gap family. Higher combs are bounded-gap refinements.
The corresponding level share is
or about . The percentages , quoted in some earlier captions, came from the much larger first--prime census and do not describe this image.
At this cutoff, , so the upper wing again terminates on an anti-diagonal with midpoint near . The level wing is horizontally banded at odd ; the dense baseline is . More than points are compressed into a 963-pixel square, so apparent solid lines and darkness are dominated by overplotting. This picture demonstrates finite support and discrete strata, not rarefaction.
This color separation makes three facts visible without asking point darkness to carry a statistical claim: the classification is exactly diagonal, fixed weights form vertical fibres, and fixed levels form horizontal fibres. The blank sectors are forced by inequalities, not mysterious repulsion. Quantitative density questions require counts across multiple cutoffs, confidence or error analysis where sampling is involved, and ultimately proof.
The project’s current 3D page identifies the coordinates as
for dots, again the first primes minus . An older description calling the third coordinate the index is wrong.
The exact order cones are
Fixed gap gives a plane ; fixed weight gives ; fixed level gives ; and the class boundary is the plane . Perspective makes parallel sheets appear to converge. Occlusion, depth-dependent point size, antialiasing, and the absence of a legend prevent quantitative interpretation of color or density.
A publishable 3D replacement should use a square viewport, labeled axes, a fixed orthographic view plus one fixed oblique view, equal scaling, documented -normalization, and consistent opacity across cutoffs. One version could color by class and another by . Static views alone should not be used to infer an asymptotic density.
The screenshot usefully records the project’s internal taxonomy, but
two badges require correction. Its C4 PROVED* label
conflicts with the fuller fifth report, which correctly limits
completeness to
.
The Cube Lemma is global; the five-member exception list is not. Its C9
PROVED* label refers to the internal Theorem B; the
screenshot cannot validate a proof, and the full supplied report omits
the central sieve details. C7 and C8 are one implication and its
contrapositive, not separate contributions.
The figures are strongest as exact portraits of algebraic constraints:
They do not establish infinitude, independence, limiting density, Mertens asymptotics, C9, or any classical prime conjecture. Any such conclusion must be supported by a stated statistic across controlled ranges or by analysis.
Classical additive number theory studies sums and representations; multiplicative number theory studies primes, factors, and multiplicative functions. WLJ does not merge those subjects wholesale. Its precise bridge is narrower and potentially useful:
For primes, typical gaps have size comparable to , while . The class asks whether has a divisor in . This transports a local additive statistic into a multiplicative avoidance event at a point whose location is itself gap-dependent.
A complete proof of the proposed C9 bound would be a real theorem about the scarcity of gap-reflected integers with an empty divisor window. Its novelty would lie in the coupling: is not sampled independently of the primes but is determined by a consecutive pair. Such a result would belong naturally beside sieve bounds for linear forms and the theory of divisors of shifted primes.
If one could establish an asymptotic for level one or the full level class, the constants would measure a three-way interaction among prime-gap frequencies, prime-tuple singular series, and divisor-window avoidance. A rigorously derived constant would be more significant than a visual classification because it would quantify a new local correlation.
For a sequence with controlled gaps, one can ask whether its reflected integers behave like random integers, shifted primes, polynomial values, or a biased multiplicative ensemble. Comparing primes with natural numbers, polynomial sequences, and synthetic controls could identify which features are caused by the WLJ rule itself and which depend on the source sequence.
WLJ also suggests a computational problem distinct from full factorization: find the first divisor of beyond a moving threshold . On large batches, segmented sieves, partial factorization, and divisor-generation algorithms may exploit the narrow threshold and shared ranges. The mathematics of the coordinate system and the efficiency of its census are separable research questions.
The relevant external literature is not primarily RH or Goldbach. It is the distribution of divisors in short multiplicative intervals and of divisors of shifted prime values. Kevin Ford’s work on integers with a divisor in , especially “The distribution of integers with a divisor in a given interval”, supplies a natural baseline. Dimitris Koukoulopoulos’ “Divisors of shifted primes” is closer still to the arithmetic sampling issue.
Neither paper directly treats , because the shift is the actual next prime gap and therefore depends on consecutiveness. That dependence is precisely the analytic obstacle. It can be discarded for some upper bounds, as the C9 outline proposes, but not for matching lower bounds or asymptotics.
The intellectually honest impact is therefore conditional: the framework is already a useful descriptive coordinate system; it becomes a substantive analytic theory only when its native counting problems are proved with complete, externally checkable arguments.
The decomposition is a mathematically coherent coordinate change on the indices for which
It converts the next-step additive increment into a factor-threshold problem for the reflected integer . Existence and uniqueness are elementary. The class boundary is exactly the occupancy or vacancy of the divisor window .
On the natural numbers, the coordinate system reduces exactly to the smallest-prime-factor decomposition of . This explains the visible Eratosthenes columns and the shifted-prime baseline, while also fixing the correct logical claim: WLJ encodes the sieve’s first-strike partition and can recursively read a factorization; it does not replace FTA or introduce a superior sieve algorithm.
On the primes, all but are decomposable. The parity, coprimality, level bound, twin-prime identity, balanced-prime equivalence, mod- rigidity, and Cube Lemma are proved. The prime plane and 3D cloud have exact order geometry. These are durable results independent of any density conjecture.
The five composite-weight level exceptions are independently visible below and, accepting the project’s census together with the published finite gap table, are complete through . That statement is finite. The global C4 conjecture remains open.
The evidence for rarefaction is substantial: the independently recomputed share falls to by , and the project reports by . The project’s C9 proof strategy is plausible, but the supplied document does not prove the required uniform sieve and average singular-series estimates. As of the date of this report, C9 should be described as a proposed unrefereed theorem and as conjectural in the public OEIS/arXiv record.
No attached source or external publication proves any of the following:
This negative list is not a dismissal. It identifies the exact boundary between an attractive coordinate system and a mature analytic theory.
The highest-value next step is not a longer census but a self-contained manuscript. It should state and prove a uniform dimension-three upper-bound sieve for
over the complete parameter range , odd , including inadmissible triples and small . It should then prove the required average of the singular factors rather than cite it schematically. The gap-tail and Cube-Lemma reductions must be ordered so that “polylogarithmic” claims are made only after has been truncated. A public preprint would let independent specialists check constants, uniformity, and logarithmic losses.
Two outcomes would both be useful. A complete proof of the advertised bound would establish C9. A weaker but rigorous bound would establish the conjecture without preserving the proposed exponent. The mathematical goal should take priority over matching a preannounced rate.
Release the prime generator, decomposition kernel, checkpoint logic,
boundary convention, aggregate tables, and cryptographic hashes of the
raw census. Every row must decompose
using its true successor, not require
.
Cross-check at least three independent implementations:
fordiv, factor-and-sort, and a segmented factor/sieve
pipeline. Publish anchors for the first 17 rows, powers-of-ten counts,
level-one counts, the Cube exceptions, and random row samples.
The project atlas should distinguish “computed by project code,” “cross-checked against OEIS,” and “independently reproduced.” Its current disclaimer that data are unverified is appropriately candid; a machine-readable audit manifest would make that disclaimer progressively removable.
Level one is a reflected-prime triple problem; higher levels are a divisor-window problem. They should not be forced into one heuristic constant. For level one, formulate an explicit joint hypothesis controlling both the primality of and the absence of primes between and . This would repair the logical gap in the proposed conditional constant .
For , compare the actual count with Ford’s divisor-in-interval distribution and Koukoulopoulos’ shifted-prime machinery. A first realistic theorem may be an upper bound averaged over or , rather than a pointwise asymptotic. Any proposed numerical constant should be accompanied by a stability analysis under moving windows, not just cumulative ratios.
The Cube Lemma reduces any global exception to
Therefore an eventual bound would make further exceptions impossible after a finite point. Present unconditional technology is far weaker for this purpose: the Baker–Harman–Pintz short-interval exponent gives only , whose cube is too large. See Baker–Harman–Pintz. Even the usual RH-scale gap bound would not cross the exponent threshold. Cramér-type polylogarithmic gaps would suffice, but are conjectural.
This identifies a precise reason the finite closure does not automatically become global: the needed prime-gap inequality is stronger than current unconditional theory.
For a general sequence with , level classification is a divisor-avoidance condition with a fixed lower endpoint. It should be possible to prove broad upper bounds under hypotheses on how occupies residue classes. Polynomial sequences, Beatty sequences, and carefully randomized controls would make useful test beds. Rapid-growth sequences should be analyzed separately because they fail the existence criterion.
A robust comparison program would report:
This would clarify whether apparent atlas “universality” comes from arithmetic structure or from the generic geometry of the definition.
Every 2D plot should publish the cutoff, count convention, log base, equal limits, equal aspect, and class counts. Use transparency or hexagonal/log-count bins to control overplotting. For 3D, fix a square viewport and camera, supply orthographic projections, and provide downloadable coordinates. Animate cutoffs only if the same opacity and scale are maintained. The visual goal is not spectacle but falsifiability: a reader should be able to infer which features are algebraic and which are empirical.
WLJ deserves to be taken seriously as a compact local coordinate system, not as a revolution in prime theory. Its natural-number fibre is classical and exactly solved; its prime fibre is richer because the point being factored depends on the true next prime. That dependence produces both the framework’s interest and its difficulty.
The decomposition’s most promising mathematical question is not whether familiar conjectures look different on the plot. It is whether one can prove distribution theorems for divisors of the gap-reflected values
Success there could yield a legitimate meeting point between prime-gap statistics, upper-bound sieves, and divisor-distribution theory. Until a full proof is publicly available and checked, the correct scientific posture is constructive restraint: retain the valid elementary structure, preserve the impressive finite evidence with explicit range labels, and treat the proposed new theorems as a research program rather than completed mathematics.
The independent implementation gives the following tuples. They reproduce Table 2 of the 2010 preprint exactly.
| 2 | 0 | 0 | 1 | 0 |
| 3 | 0 | 0 | 2 | 0 |
| 5 | 3 | 1 | 2 | 3 |
| 7 | 0 | 0 | 4 | 0 |
| 11 | 3 | 3 | 2 | 9 |
| 13 | 9 | 1 | 4 | 9 |
| 17 | 3 | 5 | 2 | 15 |
| 19 | 5 | 3 | 4 | 15 |
| 23 | 17 | 1 | 6 | 17 |
| 29 | 3 | 9 | 2 | 27 |
| 31 | 25 | 1 | 6 | 25 |
| 37 | 11 | 3 | 4 | 33 |
| 41 | 3 | 13 | 2 | 39 |
| 43 | 13 | 3 | 4 | 39 |
| 47 | 41 | 1 | 6 | 41 |
| 53 | 47 | 1 | 6 | 47 |
| 59 | 3 | 19 | 2 | 57 |
The verifier generated primes and smallest prime factors by an ordinary Eratosthenes-style sieve, enumerated divisors from prime powers, and then applied the definition literally. Through , it checked:
The square charts were generated from those independently computed tuples. The source code and machine-readable summary were used for this report’s internal validation; the HTML embeds the rendered figures so it remains self-contained.
For every regenerated 2D WLJ scatter:
Coordinates are , , on a square canvas with equal data-unit aspect and identical axis limits. Zeros are omitted because is undefined. The diagonal is the exact class boundary. The anti-diagonal is a finite-cutoff envelope, not an asymptotic law. For prime value cutoffs, each is decomposed using its true successor.
links.txt,
algos.txt, decompwlj_fordiv.txt, the seven
audited images, the arXiv PDF, and
Fable5_decompwlj_deep_analysis_5th_edition.html (13 July 2026).
The later online
sixth
edition was consulted for current project status.divisors,
fordiv, factor, and
forprime.Audit date: 4 August 2026. Web sources were checked
against the links supplied in links.txt and then
cross-checked with independent primary sources. Claims tied to
project-only computations or unpublished manuscripts are labeled
accordingly.