This site is supported by donations to The OEIS Foundation.
Decomposition into weight * level + jump
From OeisWiki
Decomposition of numbers into weight * level + jump
The main goal of this page is to provide a new way to see certain numbers by their decomposition into weight * level + jump. This vision is both additive and multiplicative. This decomposition can be seen as a generalization of the sieve of Eratosthenes (which is the particular case of the sequence of natural numbers). Applied to prime numbers, this decomposition is used to obtain a new classification of primes.
Principles
Principle of decomposition: we choose the smallest weight such that in the Euclidean division of a number by its weight, the remainder is the jump (first difference, gap). The quotient will be the level.
Principles of classification: if the number is not decomposable, it is not classified. If the weight is greater than the level then the number is classified by level, if not then it is classified by weight.
Definitions
Let
be a strictly increasing integer sequence.
Jump
The jump (first difference, gap) of
is defined as
l(n)
l(n) is defined as
or
Weight
The weight of
is defined as
or
Level
The level of
is defined as
Decomposition criterion
A strictly increasing integer sequence,
can be decomposed into weight * level + jump when
is different from 0 which can be rewritten when:
or
or
The weight
is the smallest such that in the Euclidean division of
by its weight
, the quotient is the level
, and the remainder is the jump
. We have the unique decomposition
Principles of classification
- If for
,
then
is not classified.
- If for
,
then
is classified by level, if not then it is classified by weight.
Decomposition of natural numbers, the sieve of Eratosthenes
If the decomposition is possible (i.e. if n > 2), we have:
The weight is the smallest prime factor of
and the level is the largest proper divisor of
. The decomposition into weight * level + jump of natural numbers is thus a reformulation of the sieve of Eratosthenes.
Plot of log(A020639) vs log(A032742) for n ≤ 10^4, the sieve of Eratosthenes (OEIS graph):
Decomposition of prime numbers
,
and
are the only primes not decomposable[1]. Except for
,
and
, the decomposition into weight * level + jump of prime numbers is:
Plot of log(A117078) vs log(A117563) for n ≤ 10^4 (OEIS graph):
A classification of primes connected to the OEIS
Primes of level (1;i)
Principle of classification for primes of level 1:
- If for p(n), l(n) is a prime says prime(n-i) then p(n) is of level (1;i).
- Primes of level (1;1) are the balanced primes: (A006562);
- Primes of level (1;2): A117876;
- Primes of level (1;3): A118467;
- ...
Direct relations
For
different from 2, 3 and 7, we have:
Primes classified by weight
For primes classified by weight (Cf. A162175) (primes for which
), we have:
82,89 % of primes
are classified by weight for
.
Primes classified by level
For primes classified by level (Cf. A162174) (primes for which
), we have:
17,11 % of primes
are classified by level for
.
Knowing that the primes are rarefying among the natural numbers, we make the following conjecture:
- Conjecture 9: The prime numbers classified by level are rarefying among the primes.
Lesser of twin primes
If
is a lesser of twin prime greater than 3 then
has a weight of 3. If
has a weight of 3 then
is a lesser of twin prime greater than 3[1].
Conjectures
The well-known conjecture on the existence of an infinity of twin primes can be rewritten as:
- Conjecture 1: The number of primes with a weight equal to 3 is infinite.
To extend this conjecture we make these two conjectures:
- Conjecture 2: The number of primes with a weight equal to k is infinite for any
which is not a multiple of 2;
- Conjecture 2: The number of primes with a weight equal to k is infinite for any
- Conjecture 3: The number of primes of level
is infinite for any
which is not a multiple of 2.
- Conjecture 3: The number of primes of level
- Conjecture 4: Except for p(6) = 13, p(11) = 31, p(30) = 113, p(32) = 131 et p(154) = 887, primes which are classified by level have a weight which is itself a prime.
The conjecture on the existence of an infinity of balanced primes can be rewritten as:
- Conjecture 5: The number of primes of level (1;1) is infinite.
That we can easily generalize by:
- Conjecture 6: The number of primes of level (1;i) is infinite for any i ≥ 1.
Knowing that the primes are rarefying among the natural numbers, we make the following conjecture:
- Conjecture 9: The prime numbers classified by level are rarefying among the primes.
Algorithms
Naive algorithm:
// We look for the weights <= l(n)
for (int k = 3; k <= ln; k += 2) {
if ((prime % k) == jump) {
weight = k;
level = ln / k;
break;
}
}
Naive algorithm wih primality test: it's the same as the naive algorithm but with a primality test on l(n) to find directly the primes of level 1.
Algorithm "newSieve":
// We look for the primes classified by weight
// limWeight : weight <= sqrt(l(n))
int limWeight = (int) (Math.floor(Math.sqrt(ln) + 1));
//start with the smallest weight (3) and +=2
for (int k = 3; k <= limWeight; k += 2) {
if ((prime % k) == jump) {
weight = k;
level = ln / k;
p_n[l_ordre] = true;
break;
}
}
// We look for the primes classified by level
if (p_n[l_ordre] == false) {
// limLevel : level <= jump - 1
int limLevel = jump - 1;
//start with the highest level and -= 2
for (int l = limLevel; l >= 1; l -= 2) {
if ((prime % (ln / l)) == jump) {
weight = ln / l;
level = l;
p_n[l_ordre] = true;
break;
}
}
}
Algorithm "newSieve" is the fastest.
Decomposition of odd numbers
If the decomposition is possible, we have:
Plot of log(A090368) vs log(A184726) for n ≤ 10^4 (OEIS graph):
Decomposition of even numbers
If the decomposition is possible, we have:
Plot of log(A090369) vs log(A184727) for n ≤ 10^4 (OEIS graph):
Decomposition of composite numbers
If the decomposition is possible, we have:
Plot of log(A130882) vs log(A179621) for n ≤ 10^4 (OEIS graph):
Decomposition of semiprimes
If the decomposition is possible, we have:
Plot of log(A130533) vs log(A184729) for n ≤ 10^4 (OEIS graph):
Decomposition of 3-almost primes
If the decomposition is possible, we have:
Plot of log(A130650) vs log(A184753) for n ≤ 10^4 (OEIS graph):
Decomposition of lucky numbers
If the decomposition is possible, we have:
Plot of log(A130889) vs log(A184828) for n ≤ 10^4 (OEIS graph):
Decomposition of prime powers
If the decomposition is possible, we have:
Plot of log(A184829) vs log(A184831) for n ≤ 10^4 (OEIS graph):
Decomposition of squarefree numbers
If the decomposition is possible, we have:
Plot of log(A184832) vs log(A184834) for n ≤ 10^4 (OEIS graph):
Decomposition of triangular numbers
If the decomposition is possible, we have:
Plot of log(A130703) vs log(A184219) for n ≤ 10^4 (OEIS graph):
Decomposition of squares
If the decomposition is possible, we have:
Plot of log(A133150) vs log(A184221) for n ≤ 10^4 (OEIS graph):
Decomposition of pentagonal numbers
If the decomposition is possible, we have:
Plot of log(A133151) vs log(A184751) for n ≤ 10^3 (OEIS graph):
Sequences
Sequences related to the decomposition.
See also
Notes
- ↑ 1.0 1.1 Rémi Eismann, arXiv:0711.0865 (pdf) [1]
External links
- arXiv:0711.0865: Decomposition into weight * level + jump and application to a new classification of primes, Rémi Eismann.















