Jump to content

Athena problem

From Wikiversity
Subject classification: this is a mathematics resource.

Athena problem is an unsolved problem in number theory and formal language theory and order theory, this problem is named after the ancient Greek goddess Athena (which is associated with wisdom). Athena problem is: Give a natural number b > 1, find the set of the minimal elements of the set of the "prime number > b" digit strings in the positional numeral system with base b for the subsequence ordering. (A string x is a subsequence of another string y, if x can be obtained from y by deleting zero or more of the characters in y. For example, 514 is a subsequence of 352148, "string" is a subsequence of "meistersinger". In contrast, 758 is not a subsequence of 378259, "abc" is not a subsequence of "cbacacba", since the characters must be in the same order) (Unlike substring, subsequence is not required to occupy consecutive positions within the original sequences, e.g. the longest common subsequence problem is different from the longest common substring problem)

Using formal language theory terminology, Athena problem is finding the set of the minimal elements of the language of base-b representations of the prime numbers > b (which is a set of strings of symbols over the alphabet Σb := {0, 1, ..., b−1}), under the subsequence ordering (i.e. the binary relation "is a subsequence of", which is a partial ordering), for a given natural number b > 1 (You can draw this partial ordering as a Hasse diagram to find all minimal elements), this set is called Athena set, and the prime numbers in this set are called Athena primes.

By Higman's lemma, there are no infinite antichains for the subsequence ordering (i.e. the subsequence ordering is always a well quasi order) (i.e. under the subsequence ordering (i.e. the binary relation "is a subsequence of", which is a partial ordering), every set of pairwise incomparable (i.e. not comparable) strings is finite), thus there must be only finitely many such minimal elements. In other words, the Athena set in every base b must be a finite set, and every base b ≥ 2 has only finitely many Athena primes, e.g. in decimal (base b = 10), the Athena set has exactly 77 elements (they are exactly the Athena primes in decimal (base b = 10)): {11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 227, 251, 257, 277, 281, 349, 409, 449, 499, 521, 557, 577, 587, 727, 757, 787, 821, 827, 857, 877, 881, 887, 991, 2087, 2221, 5051, 5081, 5501, 5581, 5801, 5851, 6469, 6949, 8501, 9001, 9049, 9221, 9551, 9649, 9851, 9949, 20021, 20201, 50207, 60649, 80051, 666649, 946669, 5200007, 22000001, 60000049, 66000049, 66600049, 80555551, 555555555551, 5000000000000000000000000000027}.

Determining the set of the minimal elements of a arbitrary set of strings under the subsequence ordering is in general unsolvable, and can be difficult even when this set is relatively simple (such as the base b representations of the prime numbers > b).

Although the set M(S) of minimal strings is necessarily finite, determining it explicitly for a given S can be a difficult computational problem. We use some numbertheoretic heuristics to Computing|compute M(Lb), where Lb is the language of base-b representations of the prime numbers which are > b, for 2 ≤ b ≤ 36.

For bases 2 ≤ b ≤ 36, Athena problem is fully solved in bases b = 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 18, 20, 24, and also solved in bases b = 11, 13, 16, 22, 30 if probable primes are allowed. For the unsolved bases b = 17, 19, 21, 23, 25, 26, 27, 28, 29, 31, 32, 34, 35, 36, Athena problem is solved (if probable primes are allowed) except 771 families of the form x{y}z (where x and z are strings (may be empty) of digits in base b, y is a digit in base b) = sequence {xz, xyz, xyyz, xyyyz, xyyyyz, xyyyyyz, ...} (i.e. "xy+z" in regular expression), all of these 771 families contain no primes > b or probable primes > b with length ≤ 100000.

Solve the problem

[edit | edit source]

To solve the Athena problem for a given base b, we must compute the elements up to families of the form x{y}z (where x and z are strings (may be empty) of digits in base b, y is a digit in base b), and find the smallest prime > b in all such families.

We call families of the form x{y}z (where x and z are strings (may be empty) of digits in base b, y is a digit in base b) "linear" families, and we reduce these families by removing all trailing digits y from x, and removing all leading digits y from z, to make the families be easier, e.g. family 12333{3}33345 in base b is reduced to family 12{3}45 in base b, since they are in fact the same family. Our algorithm then proceeds as follows:

  • 1. M := {minimal primes in base b of length 2 or 3}, L := union of all x{Y}z (where x and z are strings (may be empty) of digits in base b) such that x ≠ 0 and gcd(z, b) = 1 and Y is the set of digits y in base b such that xyz has no subsequence in M.
  • 2. While L contains nonlinear families (families which are not linear families): Explore each family of L, and update L. Examine each family of L by:
  • 2.1. Let w be the shortest string in the family. If w has a subsequence in M, then remove the family from L. If w represents a prime, then add w to M and remove the family from L.
  • 2.2. If possible, simplify the family.
  • 2.3. Using the techniques below (covering congruence, algebraic factorization, or combine of them), check if the family can be proven to only contain composites (only count the numbers > b), and if so then remove the family from L.
  • 3. Update L, after each split examine the new families as in step 2.

e.g. in decimal (base b = 10):

M := {11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 227, 251, 257, 277, 281, 349, 409, 449, 499, 521, 557, 577, 587, 727, 757, 787, 821, 827, 857, 877, 881, 887, 991}

L := {2{0,2}1, 2{0,8}7, 3{0,3,6,9}3, 3{0,3,6,9}9, 4{6}9, 5{0,5,8}1, 5{0,2}7, 6{0,3,6,9}3, 6{0,3,4,6,9}9, 7{0,7}7, 8{0,5}1, 8{0}7, 9{0,2,5,8}1, 9{0,3,6,9}3, 9{0,3,4,6,9}9}

and since 2221 is prime, it follows that the family 2{0,2}1 splits into the families 2{0}1 and 2{0}2{0}1

and since the family 2{0}1 can be proven to contain no primes > base (since all numbers in this family are divisible by 3), it can be removed

and since 20201 is prime, it follows that the family 2{0}2{0}1 splits into the families 2{0}21 and 22{0}1

221 and 2021 are composites, but 20021 is prime, thus add 20021 to L

none of 221, 2201, 22001, 220001, 2200001 are primes, but 22000001 is prime, thus add 22000001 to L

and since the family 3{0,3,6,9}3 can be proven to contain no primes > base (since all numbers in this family are divisible by 3), it can be removed

etc.

Since the number of possible (first digit,last digit) (also called (initial digit,final digit)) combos (ordered pairs) of a prime > b in base b is (b−1)×eulerphi(b) (all digits except 0 can be the first digit of a prime > b in base b (thus b−1 possible digits), but only the digits coprime to b can be the last digit of a prime > b in base b (thus eulerphi(b) possible digits), and by the rule of product, there are (b−1)×eulerphi(b) choices of the (first digit,last digit) combo, also, both "numbers of Athena primes in base b" and "length of the largest Athena prime in base b" are roughly eγ×(b−1)×eulerphi(*b*).

Shrinking the family x{Y}z (where x and z are strings (may be empty) of digits in base b, Y is a set of digits in base b)

  • If yY and the string xyyz represents a prime > b in base b (in this case, add this prime to the list) or has a subsequence which represents a prime > b in base b, then x{Y}z can be replaced with x{Y \ y}zx{Y \ y}y{Y \ y}z.
  • If y1Y and y2Y and y1y2 and the string xy1y2z represents a prime > b in base b (in this case, add this prime to the list) or has a subsequence which represents a prime > b in base b, then x{Y}z can be replaced with x{Y \ y1}{Y \ y2}z.
  • If y1Y and y2Y and y1y2 and both the strings xy1y2z and xy2y1z represent a prime > b in base b (in this case, add this prime to the list) or have a subsequence which represents a prime > b in base b, then x{Y}z can be replaced with x{Y \ y1}zx{Y \ y2}z.

e.g. in decimal (base b = 10):

  • 2221 is a prime > 10, thus the family 2{0,2}1 splits into the two families 2{0}1 and 2{0}2{0}1.
  • 227 is a prime > 10, and it is a subsequence of 5227, thus the family 5{0,2}7 splits into the two families 5{0}7 and 5{0}2{0}7.
  • 449 is a prime > 10, and it is a subsequence of 6449, thus the family 6{0,3,4,6,9}9 splits into the two families 6{0,3,6,9}9 and 6{0,3,6,9}4{0,3,6,9}9.
  • Both 5051 and 5501 are primes > 10, thus the family 5{0,5}1 splits into the two families 5{0}1 and 5{5}1 = {5}1.
  • 8501 is a prime > 10, thus the family 8{0,5}1 splits into the family 8{0}{5}1.
  • 887 is a prime > 10, and it is a subsequence of 2887, also 2087 is a prime > 10, thus the family 2{0,8}7 splits into the two families 2{0}7 and 28{0}7.
  • 349 and 449 are primes > 10, and they are subsequences of 9349 and 9449, respectively, also 9049, 9649, 9949 are primes > 10, thus the family 9{0,3,4,6,9}9 splits into the two families 9{0,3,6,9}9 and 94{0,3,6,9}9.
  • 251, 281, 521, 821, 881 are primes > 10, and they are subsequences of 9251, 9281, 9521, 9821, 9881, respectively, also 9001, 9221, 9551, 9851 are primes > 10, thus the family 9{0,2,5,8}1 splits into the numbers {91, 901, 921, 951, 981, 9021, 9051, 9081, 9201, 9501, 9581, 9801, 90581, 95081, 95801}.

If the methods we have discussed cannot be used to rule out or shrink x{Y}z where Y = {y1, y2, ..., yn}, then we can replace x{Y}z by xy1{Y}zxy2{Y}z ∪ ... ∪ xyn{Y}z and re-run the methods on this new language.

If all remain families are linear families (i.e. of the form x{y}z, where x and z are strings (may be empty) of digits in base b, y is a digit in base b), then we search the smallest (probable) primes in these families and add these primes to the list.

e.g. in decimal (base b = 10):

  • The smallest prime in the family 5{0}27 is 5000000000000000000000000000027.
  • The smallest prime in the family {5}1 is 555555555551.
  • The smallest prime in the family 8{5}1 is 8555555555555555555551, but 8555555555555555555551 is not a minimal element since 555555555551 is a subsequence of 8555555555555555555551.

There is no guarantee that the techniques discussed will ever terminate, but in practice they often do. They are able to determine the Athena set in base b for 2 ≤ b ≤ 16 and b = 18, 20, 22, 24, 30. The bases b = 17, 19, 21, 23, 25 ≤ b ≤ 29, 31 ≤ b ≤ 36 are solved with the exception of 771 families of the form x{y}z (where x and z are strings (may be empty) of digits in base b, y is a digit in base b).

The following is a "semi-algorithm" that is guaranteed to solve the Athena problem for a given base b, but it is not so easy to implement:

  1. M =
  2. while (L) do
  3. choose x, a shortest string in L
  4. M := M ∪ {x}
  5. L := Lsup({x})

In practice, for arbitrary L, we cannot feasibly carry out step 5. Instead, we work with L', some regular overapproximation to L, until we can show L' = (which implies L = ). In practice, L' is usually chosen to be a finite union of sets of the form L1{L2}L3, where each of L1, L2, L3 is finite. In the case we consider in this project, we then have to determine whether such a family contains a prime or not.

Thus, the time complexity of the Athena problem in base b may be O(eγ×(b−1)×eulerphi(*b*)), and the CPU time of the Athena problem in base b may be longer than the age of the universe for bases b = 19, 23, 25, 27, 29, 31, 32, 33, 34, 35, also, Athena problem in bases b around 500 may be NP-complete or NP-hard, or an undecidable problem, or an example of Gödel's incompleteness theorems (like the continuum hypothesis and the halting problem).

To solve the Athena problem (i.e. to compute the Athena set), we need to determine whether a given family contains a prime. In practice, if family x{Y}z (where x and z are strings (may be empty) of digits in base b, Y is a set of digits in base b) could not be ruled out as only containing composites and Y contains two or more digits, then a relatively small prime > b could always be found in this family. Intuitively, this is because there are a large number of small strings in such a family, and at least one is likely to be prime (e.g. there are 2n−2 strings of length n in the family 1{3,7}9, and there are over a thousand strings of length 12 in the family 1{3,7}9, thus it is very impossible that these numbers are all composite). In the case Y contains only one digit, this family is of the form x{y}z, and there is only a single string of each length > (the length of x + the length of z), and it is not known if the following decision problem is recursively solvable (just like Sierpiński problem and Riesel problem, Sierpiński problem and Riesel problem can be generalized to other bases b (references: http://www.noprimeleftbehind.net/crus/Sierp-conjectures.htm, http://www.noprimeleftbehind.net/crus/Riesel-conjectures.htm, http://www.noprimeleftbehind.net/crus/Sierp-conjectures-powers2.htm, http://www.noprimeleftbehind.net/crus/Riesel-conjectures-powers2.htm, http://www.noprimeleftbehind.net/crus/Sierp-conjecture-reserves.htm, http://www.noprimeleftbehind.net/crus/Riesel-conjecture-reserves.htm), in fact, Athena problem base b covers the Sierpiński problem base b and the Riesel problem base b with k < b, i.e. finding the smallest prime of the form k×bn+1 and k×bn−1 (or prove such prime does not exist) with k < b (specially, for bases b such that the conjectured smallest Sierpiński number or the conjectured smallest Riesel number is < b, Athena problem base b covers the Sierpiński problem base b or the Riesel problem base b, respectively), since the smallest prime of the form k×bn+1 and k×bn−1 (if exists) must be a minimal element in base b, also, Athena problem base b covers finding the smallest prime of these forms in base b (or proving that such prime does not exist): (bn−1)/(b−1) (for this form, n must be prime, and we want n ≥ 2) (references of this form: http://www.fermatquotient.com/PrimSerien/GenRepu.txt, https://web.archive.org/web/20021111141203/http://www.users.globalnet.co.uk/~aads/primes.html, http://www.primenumbers.net/Henri/us/MersFermus.htm, http://www.bitman.name/math/table/379, https://pzktupel.de/Primetables/TableRepunitGen.php, https://oeis.org/A084740, https://oeis.org/A084738, https://oeis.org/A128164, https://oeis.org/A285642; or for prime bases b: https://oeis.org/A065854, https://oeis.org/A279068), bn+1 (for this form, n must be power of 2, and we want n ≥ 1) (references of this form: http://jeppesn.dk/generalized-fermat.html, http://www.noprimeleftbehind.net/crus/GFN-primes.htm, https://web.archive.org/web/20231002190634/http://yves.gallot.pagesperso-orange.fr/primes/index.html, https://pzktupel.de/Primetables/TableFermatGFBB.php, https://oeis.org/A079706, https://oeis.org/A084712, https://oeis.org/A228101), (bn+1)/2 (for odd b) (for this form, n must be power of 2, and we want n ≥ 2) (reference of this form: http://www.fermatquotient.com/PrimSerien/GenFermOdd.txt), (sqrt(bbn+1)/(sqrt(b)+1) (for square b) (for this form, 2×n+1 must be prime, and we want n ≥ 2) (references of this form: http://www.fermatquotient.com/PrimSerien/GenRepuP.txt, http://www.primenumbers.net/Henri/us/MersFermus.htm, http://www.bitman.name/math/table/488, https://pzktupel.de/Primetables/TableWagstaffGen.php, https://oeis.org/A084742, https://oeis.org/A084741; or for bases b with sqrt(b) prime: https://oeis.org/A065507), ((b−2)×bn+1)/(b−1) (n ≥ 2) (reference of this form: https://oeis.org/A243404), 2×bn+1 (n ≥ 1) (references of this form: https://www.mersenneforum.org/showthread.php?t=6918, https://www.mersenneforum.org/showthread.php?t=19725, https://oeis.org/A119624), 2×bn−1 (n ≥ 1) (references of this form: https://www.mersenneforum.org/showthread.php?t=24576, https://www.mersenneforum.org/attachment.php?attachmentid=20976&d=1567314217, https://oeis.org/A119591), bn+2 (n ≥ 1) (references of this form: https://oeis.org/A138066, https://oeis.org/A084713, https://oeis.org/A138067), bn−2 (n ≥ 2) (references of this form: https://www.primepuzzles.net/puzzles/puzz_887.htm, https://oeis.org/A250200, https://oeis.org/A255707, https://oeis.org/A084714; or for prime bases b: https://oeis.org/A292201), (b−1)×bn+1 (n ≥ 1) (references of this form: http://www.noprimeleftbehind.net/Williams-primes-MP.htm, http://www.bitman.name/math/table/477, https://pzktupel.de/Primetables/TableWilliams2.php, https://oeis.org/A305531; or for prime bases b: https://oeis.org/A087139), (b−1)×bn−1 (n ≥ 1) (references of this form: https://harvey563.tripod.com/wills.txt, http://www.noprimeleftbehind.net/Williams-primes-MM.htm, http://www.bitman.name/math/table/484, https://pzktupel.de/Primetables/TableWilliams1.php; or for prime bases b: https://oeis.org/A122396), bn+(b−1) (n ≥ 1) (references of this form: http://www.bitman.name/math/table/795, https://pzktupel.de/Primetables/TableWilliams6.php, https://oeis.org/A076845, https://oeis.org/A076846, https://oeis.org/A078178, https://oeis.org/A078179), bn−(b−1) (n ≥ 2) (references of this form: http://www.bitman.name/math/table/792, https://pzktupel.de/Primetables/TableWilliams5.php, https://oeis.org/A113516, https://oeis.org/A343589; or for prime bases b: https://cs.uwaterloo.ca/journals/JIS/VOL3/mccranie.html, http://www.bitman.name/math/table/435)):

Problem: Given strings x, z (may be empty), a digit y, and a base b (x does not start with the digit 0, z ends with a digit which coprime to b, y is not 0 if x is empty, y is coprime to b if z is empty), does there exist a prime number whose base-b expansion is of the form xynz for some n ≥ 0?

Some families can be ruled out to contain no prime > b by covering congruence, algebraic factorization (e.g. difference of two squares, sum of two cubes, Sophie Germain's identity of x4+4×y4), or combine of them, e.g.

  • The base 9 family 2{7}: Always divisible by 2 or 5
  • The base 11 family 2{5}: Always divisible by 2 or 3
  • The base 14 family B{0}1: Always divisible by 3 or 5
  • The base 13 family 95{0}3: Always divisible by 5, 7, or 17
  • The base 16 family {4}D: Always divisible by 3, 7, or 13
  • The base 16 family {8}F: Always divisible by 3, 7, or 13
  • The base 21 family {7}D: Always divisible by 2, 13, or 17
  • The base 23 family {D}GA: Always divisible by 2, 5, 7, 37, or 79
  • The base 9 family {1}: Can be written as (9n−1)/8 and can be factored as (3n−1) × (3n+1) / 8
  • The base 8 family 1{0}1: Can be written as 8n+1 and can be factored as (2n+1) × (4n−2n+1)
  • The base 9 family 3{8}: Can be written as 4×9n−1 and can be factored as (2×3n−1) × (2×3n+1)
  • The base 16 family 1{5}: Can be written as (4×16n−1)/3 and can be factored as (2×3n−1) × (2×3n+1) / 3
  • The base 16 family {4}1: Can be written as (4×16n−49)/15 and can be factored as (2×3n−7) × (2×3n+7) / 15
  • The base 27 family 7{Q}: Can be written as 8×27n−1 and can be factored as (2×3n−1) × (4×9n+2×3n+1)
  • The base 27 family 9{G}: Can be written as (125×27n−8)/13 and can be factored as (5×3n−2) × (25×9n+10×3n+4)
  • The base 16 family {C}D: Can be written as (4×16n+1)/5 and can be factored as (2×4n−2×2n+1) × (2×4n+2×2n+1) / 5
  • The base 14 family 8{D}: Can be written as 9×14n−1, it is divisible by 5 if n is odd and can be factored as (3×14n/2−1) × (3×14n/2+1) if n is even
  • The base 12 family {B}9B: Can be written as 12n−25, it is divisible by 13 if n is odd and can be factored as (12n/2−5) × (12n/2+5) if n is even
  • The base 14 family {D}5: Can be written as 14n−9, it is divisible by 5 if n is odd and can be factored as (14n/2−3) × (14n/2+3) if n is even
  • The base 17 family 1{9}: Can be written as (25×17n−9)/16, it is divisible by 2 if n is odd and can be factored as (5×17n/2−3) × (5×17n/2+3) / 16 if n is even
  • The base 17 family 7{9}: Can be written as (121×17n−9)/16, it is divisible by 2 if n is odd and can be factored as (11×17n/2−3) × (11×17n/2+3) / 16 if n is even
  • The base 19 family 1{6}: Can be written as (4×19n−1)/3, it is divisible by 5 if n is odd and can be factored as (2×19n/2−1) × (2×19n/2+1) / 3 if n is even
  • The base 19 family 7{2}: Can be written as (64×19n−1)/9, it is divisible by 5 if n is odd and can be factored as (8×19n/2−1) × (8×19n/2+1) / 9 if n is even
  • The base 24 family 3{N}: Can be written as 4×24n−1, it is divisible by 5 if n is odd and can be factored as (2×24n/2−1) × (2×24n/2+1) if n is even

By the prime number theorem, the chance that a random n-digit base b number is prime is approximately 1/n (more accurately, the chance is approximately 1/(n×ln(b)), where ln is the natural logarithm). If one conjectures the numbers x{y}z behave similarly (i.e. the numbers x{y}z is a pseudorandom sequence) you would expect 1/1 + 1/2 + 1/3 + 1/4 + ... = ∞ primes of the form x{y}z (of course, this does not always happen, since some x{y}z families can be ruled out to contain no prime > b (by covering congruence, algebraic factorization, or combine of them), but it is at least a reasonable conjecture in the absence of evidence to the contrary. Hence, the heuristic argument suggests there are always infinitely many primes in family x{y}z (where x and z are strings (may be empty) of digits in base b, y is a digit in base b) if it cannot be ruled out to contain no prime or only contain finitely many primes, by covering congruence, algebraic factorization, or combine of them. However, some families x{y}z could not be proven to contain no primes > b (by covering congruence, algebraic factorization, or combine of them) but no primes > b could be found in the family, even after searching through numbers with over 100000 digits. In such a case, the only way to proceed is to test the primality of larger and larger numbers of such form and hope a prime is eventually discovered. e.g. the smallest (probable) prime in the family A{3}A in base b = 13 is A3592197A, its algebraic form is (41×13592198+27)/4, when written in decimal contains 659677 digits (it is only probable prime, i.e. not definitely prime, since technically, probable primality tests were used to show this (which have a very small chance of making an error, see https://t5k.org/notes/prp_prob.html) because all known primality tests run far too slowly to run on numbers of this size unless either N−1 or N+1 (or both) can be ≥ 1/3 factored).

Athena conjecture: If family xynz (with fixed strings x, z (may be empty), fixed digit y, and variable n) in base b (with fixed b ≥ 2) (x does not start with the digit 0, z ends with a digit which coprime to b, y is not 0 if x is empty, y is coprime to b if z is empty) cannot be proven to only contain composites or only contain finitely many primes (by covering congruence, algebraic factorization, or combine of them), then family xynz in base b contains infinitely many primes (this is equivalent to: If form (a×bn+c)/gcd(a+c,b−1) (with fixed integers a ≥ 1, b ≥ 2, c ≠ 0 (with gcd(a,c) = 1 and gcd(b,c) = 1), and variable n) cannot be proven to only contain composites or only contain finitely many primes (by covering congruence, algebraic factorization, or combine of them), then form (a×bn+c)/gcd(a+c,b−1) contains infinitely many primes)

The numbers in family x{y}z (where x and z are strings (may be empty) of digits in base b, y is a digit in base b) are of the form (a×bn+c)/gcd(a+c,b−1) for some fixed a, b, c such that a ≥ 1, b ≥ 2 (b is the base), c ≠ 0, gcd(a,c) = 1, gcd(b,c) = 1. Except in the special case c = ±1 and gcd(a+c,b−1) = 1, when n is large the known primality tests for such a number are too inefficient to run. In this case one must resort to a probable primality test such as a Miller–Rabin primality test or a Baillie–PSW primality test, unless a divisor of the number can be found. Since we are testing many numbers in an exponential sequence, it is possible to use a sieving process to find divisors rather than using trial division.

To do this, we made use of Geoffrey Reynolds' srsieve software (download: https://pzktupel.de/Software/srsieve_1.1.4.7z). This program uses the baby-step giant-step algorithm to find all primes p which divide a×bn+c where p and n lie in a specified range. Since this program cannot handle the general case (a×bn+c)/gcd(a+c,b−1) when gcd(a+c,b−1) > 1 we only used it to sieve the sequence a×bn+c for primes p not dividing gcd(a+c,b−1), and initialized the list of candidates to not include n for which there is some prime p dividing gcd(a+c,b−1) for which p dividing (a×bn+c)/gcd(a+c,b−1). The program had to be modified slightly to remove a check which would prevent it from running in the case when a, b, and c were all odd (since then 2 divides a×bn+c, but 2 may not divide (a×bn+c)/gcd(a+c,b−1)).

Once the numbers with small divisors had been removed, it remained to test the remaining numbers using a probable primality test. For this we used the software LLR by Jean Penné. (download: http://jpenne.free.fr/index2.html). Although undocumented, it is possible to run this program on numbers of the form (a×bn+c)/gcd(a+c,b−1) when gcd(a+c,b−1) > 1, so this program required no modifications. A script was also written which allowed one to run srsieve while LLR was testing the remaining candidates, so that when a divisor was found by srsieve on a number which had not yet been tested by LLR it would be removed from the list of candidates.

For the primes < 1025000 for the "easy" bases (bases b with ≤ 150 primes > 10299 (base b = 26 has 83 known primes > 10299 and 3 unsolved families, base b = 36 has 75 known primes > 10299 and 4 unsolved families, base b = 17 has 99 known primes > 10299 and 18 unsolved families, base b = 21 has 80 known primes > 10299 and 12 unsolved families, base b = 19 has 201 known primes > 10299 and 23 unsolved families), i.e. bases *b* = 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 26, 28, 30, 36), we employed CM by Andreas Enge (download: https://www.multiprecision.org/cm/download.html), an elliptic curve primality proving implementation.

These are the results of the Athena problem in bases 2 ≤ b ≤ 36 (we stop at base 36 since this base is the maximum base for which it is possible to write the numbers with the symbols 0, 1, 2, ..., 9 and A, B, C, ..., Z (i.e. the 10 Arabic numerals and the 26 Latin letters): (some large Athena primes are only probable primes, i.e. not definitely primes, since they are too large to be ECPP proved and neither N−1 nor N+1 can be ≥ 1/3 factored, all of them pass the Baillie–PSW primality test and the strong primality test (i.e. the Miller–Rabin primality test) with all prime bases p ≤ 61, however, all Athena primes < 1025000 for bases b = 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 22, 24, 26, 28, 30, 36 are definitely primes, most of them > 10299 are proven primes with ECPP proving, others > 10299 are proven primes with N−1 or N+1 proving)

All numbers are written in base b, using A to Z to represent digit values 10 to 35, "{}" means repeating, e.g. family 12{3}45 means the sequence {1245, 12345, 123345, 1233345, 12333345, 123333345, ...} (where the members are expressed as base b strings), subscripts are used to indicate repetitions of digits, e.g. 1234567 means 123333567 (all subscripts are written in decimal).

Base 2: 1 Athena prime (the largest of which has 2 digits (it is 11, and its value is 3 in decimal)): {11}

Base 3: 3 Athena primes (the largest of which has 3 digits (it is 111, and its value is 13 in decimal)): {12, 21, 111}

Base 4: 5 Athena primes (the largest of which has 3 digits (it is 221, and its value is 41 in decimal)): {11, 13, 23, 31, 221}

Base 5: 22 Athena primes (the largest of which has 96 digits (it is 109313, and its algebraic form is 595+8)): {12, 21, 23, 32, 34, 43, 104, 111, 131, 133, 313, 401, 414, 3101, 10103, 14444, 30301, 33001, 33331, 44441, 300031, 100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013}

Base 6: 11 Athena primes (the largest of which has 5 digits (it is 40041, and its value is 5209 in decimal)): {11, 15, 21, 25, 31, 35, 45, 51, 4401, 4441, 40041}

Base 7: 71 Athena primes (the largest of which has 17 digits (it is 3161, and its algebraic form is (717−5)/2)): {14, 16, 23, 25, 32, 41, 43, 52, 56, 61, 65, 113, 115, 131, 133, 155, 212, 221, 304, 313, 335, 344, 346, 364, 445, 515, 533, 535, 544, 551, 553, 1022, 1051, 1112, 1202, 1211, 1222, 2111, 3031, 3055, 3334, 3503, 3505, 3545, 4504, 4555, 5011, 5455, 5545, 5554, 6034, 6634, 11111, 11201, 30011, 30101, 31001, 31111, 33001, 33311, 35555, 40054, 100121, 150001, 300053, 351101, 531101, 1100021, 33333301, 5100000001, 33333333333333331}

Base 8: 75 Athena primes (the largest of which has 221 digits (it is 42207, and its algebraic form is (4×8221+17)/7)): {13, 15, 21, 23, 27, 35, 37, 45, 51, 53, 57, 65, 73, 75, 107, 111, 117, 141, 147, 161, 177, 225, 255, 301, 343, 361, 401, 407, 417, 431, 433, 463, 467, 471, 631, 643, 661, 667, 701, 711, 717, 747, 767, 3331, 3411, 4043, 4443, 4611, 5205, 6007, 6101, 6441, 6477, 6707, 6777, 7461, 7641, 47777, 60171, 60411, 60741, 444641, 500025, 505525, 3344441, 4444477, 5500525, 5550525, 55555025, 444444441, 744444441, 77774444441, 7777777777771, 555555555555525, 44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444447}

Base 9: 151 Athena primes (the largest of which has 1161 digits (it is 30115811, and its algebraic form is 3×91160+10)): {12, 14, 18, 21, 25, 32, 34, 41, 45, 47, 52, 58, 65, 67, 74, 78, 81, 87, 117, 131, 135, 151, 155, 175, 177, 238, 272, 308, 315, 331, 337, 355, 371, 375, 377, 438, 504, 515, 517, 531, 537, 557, 564, 601, 638, 661, 702, 711, 722, 735, 737, 751, 755, 757, 771, 805, 838, 1011, 1015, 1101, 1701, 2027, 2207, 3017, 3057, 3101, 3501, 3561, 3611, 3688, 3868, 5035, 5051, 5071, 5101, 5501, 5554, 5705, 5707, 7017, 7075, 7105, 7301, 8535, 8544, 8555, 8854, 20777, 22227, 22777, 30161, 33388, 50161, 50611, 53335, 55111, 55535, 55551, 57061, 57775, 70631, 71007, 77207, 100037, 100071, 100761, 105007, 270707, 301111, 305111, 333035, 333385, 333835, 338885, 350007, 500075, 530005, 555611, 631111, 720707, 2770007, 3030335, 7776662, 30300005, 30333335, 38333335, 51116111, 70000361, 300030005, 300033305, 351111111, 1300000007, 5161111111, 8333333335, 300000000035, 311111111161, 544444444444, 2000000000007, 5700000000001, 7270000000007, 88888888833335, 100000000000507, 5111111111111161, 7277777777777777707, 8888888888888888888335, 30000000000000000000051, 1000000000000000000000000057, 56111111111111111111111111111111111111, 7666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666662, 27777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777707, 300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011}

Base 10: 77 Athena primes (the largest of which has 31 digits (it is 502827, and its algebraic form is 5×1030+27)): {11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 227, 251, 257, 277, 281, 349, 409, 449, 499, 521, 557, 577, 587, 727, 757, 787, 821, 827, 857, 877, 881, 887, 991, 2087, 2221, 5051, 5081, 5501, 5581, 5801, 5851, 6469, 6949, 8501, 9001, 9049, 9221, 9551, 9649, 9851, 9949, 20021, 20201, 50207, 60649, 80051, 666649, 946669, 5200007, 22000001, 60000049, 66000049, 66600049, 80555551, 555555555551, 5000000000000000000000000000027}

Base 11: 1068 Athena primes (including 1 unproven probable prime: 5762668), the largest of which has 62669 digits (it is 5762668, and its algebraic form is (57×1162668−7)/10), see Data of Athena (probable) primes base 11

Base 12: 106 Athena primes (the largest of which has 42 digits (it is 403977, and its algebraic form is 4×1241+91)): {11, 15, 17, 1B, 25, 27, 31, 35, 37, 3B, 45, 4B, 51, 57, 5B, 61, 67, 6B, 75, 81, 85, 87, 8B, 91, 95, A7, AB, B5, B7, 221, 241, 2A1, 2B1, 2BB, 401, 421, 447, 471, 497, 565, 655, 665, 701, 70B, 721, 747, 771, 77B, 797, 7A1, 7BB, 907, 90B, 9BB, A41, B21, B2B, 2001, 200B, 202B, 222B, 229B, 292B, 299B, 4441, 4707, 4777, 6A05, 6AA5, 729B, 7441, 7B41, 929B, 9777, 992B, 9947, 997B, 9997, A0A1, A201, A605, A6A5, AA65, B001, B0B1, BB01, BB41, 600A5, 7999B, 9999B, AAAA1, B04A1, B0B9B, BAA01, BAAA1, BB09B, BBBB1, 44AAA1, A00065, BBBAA1, AAA0001, B00099B, AA000001, BBBBBB99B, B0000000000000000000000000009B, 400000000000000000000000000000000000000077}

Base 13: 3197 Athena primes (including 4 unproven probable primes: C523755C, 8032017111, 95197420, A3592197A), the largest of which has 592199 digits (it is A3592197A, and its algebraic form is (41×13592198+27)/4), see Data of Athena (probable) primes base 13

Base 14: 650 Athena primes, the largest of which has 19699 digits (it is 4D19698, and its algebraic form is 5×1419698−1), see Data of Athena primes base 14

Base 15: 1284 Athena primes, the largest of which has 157 digits (it is 715597, and its algebraic form is (15157+59)/2), see Data of Athena primes base 15

Base 16: 2347 Athena primes (including 3 unproven probable primes: DB32234, 472785DD, 3116137AF), the largest of which has 116139 digits (it is 3116137AF, and its algebraic form is (16116139+619)/5), see Data of Athena (probable) primes base 16

Base 17: 10415 known Athena primes (including many unproven probable primes) and 12 unsolved families (1{7}, 1F{0}7, 4{7}A, 70F{0}D, 8{B}9, 9{5}9, A{D}F, B{0}B3, {B}E9, {B}EE, F1{9}, FD0{D}, no primes or probable primes with length ≤ 200000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 17

Base 18: 549 Athena primes, the largest of which has 6271 digits (it is C06268C5, and its algebraic form is 12×186270+221), see Data of Athena primes base 18

Base 19: 31417 known Athena primes (including many unproven probable primes) and 17 unsolved families (4B5{0}H, {5}3, 5{H}05, 5{H}0H, 5{H}5, 66{B}, 71{0}177, 7AF{0}H, 97{0}3, C{H}C, EE1{6}, F{7}5, F{B}G, F{D}F, H0F{0}7A, HB{0}5B5, II{D}, no primes or probable primes with length ≤ 200000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 19

Base 20: 3314 Athena primes, the largest of which has 6271 digits (it is G06269D, and its algebraic form is 16×206270+13), see Data of Athena primes base 20

Base 21: 13386 known Athena primes (including many unproven probable primes) and 8 unsolved families (5{0}DJ, {9}D, B3{0}EB, B{H}6H, C{F}0K, {F}35, G{0}FK, H{0}7771, no primes or probable primes with length ≤ 200000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 21

Base 22: 8003 Athena primes (including 1 unproven probable prime: BK220015), the largest of which has 22003 digits (it is BK220015, and its algebraic form is (251×2222002−335)/21), see Data of Athena (probable) primes base 22

Base 23: 65178 known Athena primes (including many unproven probable primes) and 87 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 23 and Data of unsolved families for Athena problem base 23

Base 24: 3409 Athena primes, the largest of which has 8134 digits (it is N00N8129LN, and its algebraic form is 13249×248131−49), see Data of Athena primes base 24

Base 25: 133639 known Athena primes (including many unproven probable primes) and 85 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 25 and Data of unsolved families for Athena problem base 25

Base 26: 25256 known Athena primes (including 7 unproven probable primes: 5193916F, 720279OL, LD0209757, 6K233005, J044303KCB, M0611862BB, 85M197060B) and 3 unsolved families ({A}6F, {H}MH, {I}GL, no primes or probable primes with length ≤ 200000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 26

Base 27: 102852 known Athena primes (including many unproven probable primes) and 44 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 27 and Data of unsolved families for Athena problem base 27

Base 28: 25528 known Athena primes (including 3 unproven probable primes: N624051LR, 5OA31238F, O4O945359) and 1 unsolved family (O{A}F, no primes or probable primes with length ≤ 900000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 28

Base 29: 355242 known Athena primes (including many unproven probable primes) and 125 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 29 and Data of unsolved families for Athena problem base 29

Base 30: 2619 Athena primes (including 1 unproven probable prime: I024608D), the largest of which has 34206 digits (it is OT34205, and its algebraic form is 25×3034205−1), see Data of Athena (probable) primes base 30

Base 31: 569323 known Athena primes (including many unproven probable primes) and 77 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 31 and Data of unsolved families for Athena problem base 31

Base 32: 168882 known Athena primes (including many unproven probable primes) and 120 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 32 and Data of unsolved families for Athena problem base 32

Base 33: 280012 known Athena primes (including many unproven probable primes) and 81 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 33 and Data of unsolved families for Athena problem base 33

Base 34: 184785 known Athena primes (including many unproven probable primes) and 47 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 34 and Data of unsolved families for Athena problem base 34

Base 35: 720002 known Athena primes (including many unproven probable primes) and 60 unsolved families (no primes or probable primes with length ≤ 100000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 35 and Data of unsolved families for Athena problem base 35

Base 36: 35286 known Athena primes (including 3 unproven probable primes: 7K26567Z, S0750078H, P81993SZ) and 4 unsolved families (B{0}EUV, HM{0}N, N{0}YYN, O{L}Z, no primes or probable primes with length ≤ 200000, nor can be proven to only contain composites), see Data of known Athena (probable) primes base 36

Condensed table for bases 2 ≤ b ≤ 36

[edit | edit source]
b number of Athena primes (or probable primes, which are Athena primes assuming their primality) in base b base-b form of the top 10 known Athena primes (or probable primes, which are Athena primes assuming their primality) in base b (write "dn" if there are 5 or more (n) consecutive same digits d) length of the top 10 known Athena primes (or probable primes, which are Athena primes assuming their primality) in base b length of the top 10 known Athena primes (or probable primes, which are Athena primes assuming their primality) in base b in decimal algebraic ((a×bn+c)/gcd(a+c,b−1)) form of the top 10 known Athena primes (or probable primes, which are Athena primes assuming their primality) in base b factordb entry of the top 10 known Athena primes (or probable primes, which are Athena primes assuming their primality) in base b the top 10 known Athena primes (or probable primes, which are Athena primes assuming their primality) in base b written in base b (use lower case letters instead of upper case letters) number of unsolved families in the Athena problem in base b (all of these left families are linear families) searching limit of length for the unsolved families in the Athena problem in base b (if there are different searching limits for the unsolved families in the Athena problem in base b, choose the lowest searching limit)
2 1 11 2 1 3 http://factordb.com/index.php?id=3&open=ecm http://factordb.com/index.php?showid=3&base=2 0
3 3 111
21
12
3
2
2
2
1
1
13
7
5
http://factordb.com/index.php?id=13&open=ecm
http://factordb.com/index.php?id=7&open=ecm
http://factordb.com/index.php?id=5&open=ecm
http://factordb.com/index.php?showid=13&base=3
http://factordb.com/index.php?showid=7&base=3
http://factordb.com/index.php?showid=5&base=3
0
4 5 221
31
23
13
11
3
2
2
2
2
2
2
2
1
1
41
13
11
7
5
http://factordb.com/index.php?id=41&open=ecm
http://factordb.com/index.php?id=13&open=ecm
http://factordb.com/index.php?id=11&open=ecm
http://factordb.com/index.php?id=7&open=ecm
http://factordb.com/index.php?id=5&open=ecm
http://factordb.com/index.php?showid=41&base=4
http://factordb.com/index.php?showid=13&base=4
http://factordb.com/index.php?showid=11&base=4
http://factordb.com/index.php?showid=7&base=4
http://factordb.com/index.php?showid=5&base=4
0
5 22 109313
300031
44441
33331
33001
30301
14444
10103
3101
414
96
6
5
5
5
5
5
5
4
3
67
4
4
4
4
4
4
3
3
3
595+8
9391
3121
2341
2251
1951
1249
653
401
109
http://factordb.com/index.php?id=1100000000034686071&open=ecm
http://factordb.com/index.php?id=9391&open=ecm
http://factordb.com/index.php?id=3121&open=ecm
http://factordb.com/index.php?id=2341&open=ecm
http://factordb.com/index.php?id=2251&open=ecm
http://factordb.com/index.php?id=1951&open=ecm
http://factordb.com/index.php?id=1249&open=ecm
http://factordb.com/index.php?id=653&open=ecm
http://factordb.com/index.php?id=401&open=ecm
http://factordb.com/index.php?id=109&open=ecm
http://factordb.com/index.php?showid=1100000000034686071&base=5
http://factordb.com/index.php?showid=9391&base=5
http://factordb.com/index.php?showid=3121&base=5
http://factordb.com/index.php?showid=2341&base=5
http://factordb.com/index.php?showid=2251&base=5
http://factordb.com/index.php?showid=1951&base=5
http://factordb.com/index.php?showid=1249&base=5
http://factordb.com/index.php?showid=653&base=5
http://factordb.com/index.php?showid=401&base=5
http://factordb.com/index.php?showid=109&base=5
0
6 11 40041
4441
4401
51
45
35
31
25
21
15
5
4
4
2
2
2
2
2
2
2
4
4
4
2
2
2
2
2
2
2
5209
1033
1009
31
29
23
19
17
13
11
http://factordb.com/index.php?id=5209&open=ecm
http://factordb.com/index.php?id=1033&open=ecm
http://factordb.com/index.php?id=1009&open=ecm
http://factordb.com/index.php?id=31&open=ecm
http://factordb.com/index.php?id=29&open=ecm
http://factordb.com/index.php?id=23&open=ecm
http://factordb.com/index.php?id=19&open=ecm
http://factordb.com/index.php?id=17&open=ecm
http://factordb.com/index.php?id=13&open=ecm
http://factordb.com/index.php?id=11&open=ecm
http://factordb.com/index.php?showid=5209&base=6
http://factordb.com/index.php?showid=1033&base=6
http://factordb.com/index.php?showid=1009&base=6
http://factordb.com/index.php?showid=31&base=6
http://factordb.com/index.php?showid=29&base=6
http://factordb.com/index.php?showid=23&base=6
http://factordb.com/index.php?showid=19&base=6
http://factordb.com/index.php?showid=17&base=6
http://factordb.com/index.php?showid=13&base=6
http://factordb.com/index.php?showid=11&base=6
0
7 71 3161
51071
3601
1100021
531101
351101
300053
150001
100121
40054
17
10
8
7
6
6
6
6
6
5
15
9
7
6
5
5
5
5
5
4
(717−5)/2
36×78+1
(78−47)/2
134471
91631
62819
50459
28813
16871
9643
http://factordb.com/index.php?id=116315256993601&open=ecm
http://factordb.com/index.php?id=207532837&open=ecm
http://factordb.com/index.php?id=2882377&open=ecm
http://factordb.com/index.php?id=134471&open=ecm
http://factordb.com/index.php?id=91631&open=ecm
http://factordb.com/index.php?id=62819&open=ecm
http://factordb.com/index.php?id=50459&open=ecm
http://factordb.com/index.php?id=28813&open=ecm
http://factordb.com/index.php?id=16871&open=ecm
http://factordb.com/index.php?id=9643&open=ecm
http://factordb.com/index.php?showid=116315256993601&base=7
http://factordb.com/index.php?showid=207532837&base=7
http://factordb.com/index.php?showid=2882377&base=7
http://factordb.com/index.php?showid=134471&base=7
http://factordb.com/index.php?showid=91631&base=7
http://factordb.com/index.php?showid=62819&base=7
http://factordb.com/index.php?showid=50459&base=7
http://factordb.com/index.php?showid=28813&base=7
http://factordb.com/index.php?showid=16871&base=7
http://factordb.com/index.php?showid=9643&base=7
0
8 75 42207
51325
7121
7777461
7471
481
55025
5550525
5500525
4577
221
15
13
11
9
9
8
7
7
7
200
14
12
10
9
8
8
7
7
7
(4×8221+17)/7
(5×815−173)/7
813−7
(28669×87−25)/7
(53×88−25)/7
(4×89−25)/7
(5×88−2413)/7
1495381
1474901
(4×87+185)/7
http://factordb.com/index.php?id=1100000000416605822&open=ecm
http://factordb.com/index.php?id=25131694349141&open=ecm
http://factordb.com/index.php?id=549755813881&open=ecm
http://factordb.com/index.php?id=8589035809&open=ecm
http://factordb.com/index.php?id=127027489&open=ecm
http://factordb.com/index.php?id=76695841&open=ecm
http://factordb.com/index.php?id=11983381&open=ecm
http://factordb.com/index.php?id=1495381&open=ecm
http://factordb.com/index.php?id=1474901&open=ecm
http://factordb.com/index.php?id=1198399&open=ecm
http://factordb.com/index.php?showid=1100000000416605822&base=8
http://factordb.com/index.php?showid=25131694349141&base=8
http://factordb.com/index.php?showid=549755813881&base=8
http://factordb.com/index.php?showid=8589035809&base=8
http://factordb.com/index.php?showid=127027489&base=8
http://factordb.com/index.php?showid=76695841&base=8
http://factordb.com/index.php?showid=11983381&base=8
http://factordb.com/index.php?showid=1495381&base=8
http://factordb.com/index.php?showid=1474901&base=8
http://factordb.com/index.php?showid=1198399&base=8
0
9 151 30115811
2768607
763292
56136
102557
302051
819335
7271507
511361
1011507
1161
689
331
38
28
23
22
19
16
15
1108
657
316
37
26
22
21
19
16
14
3×91160+10
(23×9688−511)/8
(31×9330−19)/4
(409×936−1)/8
927+52
3×922+46
922−454
(527×917−511)/8
(41×915+359)/8
914+412
http://factordb.com/index.php?id=1100000002376318423&open=prime
http://factordb.com/index.php?id=1100000002495467486&open=prime
http://factordb.com/index.php?id=1100000002359003642&open=prime
http://factordb.com/index.php?id=1100000001554010824&open=ecm
http://factordb.com/index.php?id=1100000002512830927&open=ecm
http://factordb.com/index.php?id=1100000000032261811&open=ecm
http://factordb.com/index.php?id=1100000002495736583&open=ecm
http://factordb.com/index.php?id=1100000003446800389&open=ecm
http://factordb.com/index.php?id=1055192051985121&open=ecm
http://factordb.com/index.php?id=22876792455373&open=ecm
http://factordb.com/index.php?showid=1100000002376318423&base=9
http://factordb.com/index.php?showid=1100000002495467486&base=9
http://factordb.com/index.php?showid=1100000002359003642&base=9
http://factordb.com/index.php?showid=1100000001554010824&base=9
http://factordb.com/index.php?showid=1100000002512830927&base=9
http://factordb.com/index.php?showid=1100000000032261811&base=9
http://factordb.com/index.php?showid=1100000002495736583&base=9
http://factordb.com/index.php?showid=1100000003446800389&base=9
http://factordb.com/index.php?showid=1055192051985121&base=9
http://factordb.com/index.php?showid=22876792455373&base=9
0
10 77 502827
5111
80551
66600049
66000049
60549
22051
5200007
946669
666649
31
12
8
8
8
8
8
7
6
6
31
12
8
8
8
8
8
7
6
6
5×1030+27
(5×1012−41)/9
(725×106−41)/9
66600049
66000049
6×107+49
22×106+1
5200007
946669
666649
http://factordb.com/index.php?id=1100000000204142046&open=ecm
http://factordb.com/index.php?id=555555555551&open=ecm
http://factordb.com/index.php?id=80555551&open=ecm
http://factordb.com/index.php?id=66600049&open=ecm
http://factordb.com/index.php?id=66000049&open=ecm
http://factordb.com/index.php?id=60000049&open=ecm
http://factordb.com/index.php?id=22000001&open=ecm
http://factordb.com/index.php?id=5200007&open=ecm
http://factordb.com/index.php?id=946669&open=ecm
http://factordb.com/index.php?id=666649&open=ecm
http://factordb.com/index.php?showid=1100000000204142046&base=10
http://factordb.com/index.php?showid=555555555551&base=10
http://factordb.com/index.php?showid=80555551&base=10
http://factordb.com/index.php?showid=66600049&base=10
http://factordb.com/index.php?showid=66000049&base=10
http://factordb.com/index.php?showid=60000049&base=10
http://factordb.com/index.php?showid=22000001&base=10
http://factordb.com/index.php?showid=5200007&base=10
http://factordb.com/index.php?showid=946669&base=10
http://factordb.com/index.php?showid=666649&base=10
0
11 1068 5762668
5571011
775944
A71358
8522005
507206
51612A
5012657
1012551
326122
62669
1013
761
715
223
208
163
129
128
124
65263
1055
793
745
233
217
170
134
133
129
(57×1162668−7)/10
(607×111011−7)/10
(7×11761−367)/10
11715−58
(17×11222−111)/2
(557×11206−7)/10
(11163−57)/2
5×11128+62
11127+56
(178×11122−3)/5
http://factordb.com/index.php?id=1100000003573679860&open=prime
http://factordb.com/index.php?id=1100000002361376522&open=prime
http://factordb.com/index.php?id=1100000002505568840&open=prime
http://factordb.com/index.php?id=1100000003576826487&open=prime
http://factordb.com/index.php?id=1100000003576826769&open=ecm
http://factordb.com/index.php?id=1100000002518512744&open=ecm
http://factordb.com/index.php?id=1100000002391585327&open=ecm
http://factordb.com/index.php?id=1100000002632393378&open=ecm
http://factordb.com/index.php?id=1100000002391531300&open=ecm
http://factordb.com/index.php?id=1100000003576826781&open=ecm
http://factordb.com/index.php?showid=1100000003573679860&base=11
http://factordb.com/index.php?showid=1100000002361376522&base=11
http://factordb.com/index.php?showid=1100000002505568840&base=11
http://factordb.com/index.php?showid=1100000003576826487&base=11
http://factordb.com/index.php?showid=1100000003576826769&base=11
http://factordb.com/index.php?showid=1100000002518512744&base=11
http://factordb.com/index.php?showid=1100000002391585327&base=11
http://factordb.com/index.php?showid=1100000002632393378&base=11
http://factordb.com/index.php?showid=1100000002391531300&base=11
http://factordb.com/index.php?showid=1100000003576826781&base=11
0
12 106 403977
B0279B
B699B
AA051
B00099B
AAA0001
BBBAA1
A00065
44AAA1
BBBB1
42
30
9
8
7
7
6
6
6
5
45
33
10
9
8
8
7
7
7
6
4×1241+91
11×1229+119
129−313
130×126+1
32847239
32555521
2985817
2488397
1097113
248821
http://factordb.com/index.php?id=1100000002375054575&open=ecm
http://factordb.com/index.php?id=1100000002354113100&open=ecm
http://factordb.com/index.php?id=5159780039&open=ecm
http://factordb.com/index.php?id=388177921&open=ecm
http://factordb.com/index.php?id=32847239&open=ecm
http://factordb.com/index.php?id=32555521&open=ecm
http://factordb.com/index.php?id=2985817&open=ecm
http://factordb.com/index.php?id=2488397&open=ecm
http://factordb.com/index.php?id=1097113&open=ecm
http://factordb.com/index.php?id=248821&open=ecm
http://factordb.com/index.php?showid=1100000002375054575&base=12
http://factordb.com/index.php?showid=1100000002354113100&base=12
http://factordb.com/index.php?showid=5159780039&base=12
http://factordb.com/index.php?showid=388177921&base=12
http://factordb.com/index.php?showid=32847239&base=12
http://factordb.com/index.php?showid=32555521&base=12
http://factordb.com/index.php?showid=2985817&base=12
http://factordb.com/index.php?showid=2488397&base=12
http://factordb.com/index.php?showid=1097113&base=12
http://factordb.com/index.php?showid=248821&base=12
0
13 3197 A3592197A
95197420
8032017111
C523755C
C1063192
B06540BBA
39062661
1770270317
72022972
93015511
592199
197421
32021
23757
10633
6544
6269
2708
2300
1554
659677
219916
35670
26464
11845
7290
6983
3016
2562
1731
(41×13592198+27)/4
(113×13197420−5)/12
8×1332020+183
(149×1323756+79)/12
1310633−50
11×136543+2012
48×136267+1
267×132705+20
93×132298+2
120×131552+1
http://factordb.com/index.php?id=1100000005489162806&open=prime
http://factordb.com/index.php?id=1100000003943359311&open=prime
http://factordb.com/index.php?id=1100000000490878060&open=prime
http://factordb.com/index.php?id=1100000003590647776&open=prime
http://factordb.com/index.php?id=1100000003590493750&open=prime
http://factordb.com/index.php?id=1100000002616382906&open=prime
http://factordb.com/index.php?id=1100000000765961441&open=prime
http://factordb.com/index.php?id=1100000003590430825&open=prime
http://factordb.com/index.php?id=1100000002632396910&open=prime
http://factordb.com/index.php?id=1100000000765961452&open=prime
http://factordb.com/index.php?showid=1100000005489162806&base=13
http://factordb.com/index.php?showid=1100000003943359311&base=13
http://factordb.com/index.php?showid=1100000000490878060&base=13
http://factordb.com/index.php?showid=1100000003590647776&base=13
http://factordb.com/index.php?showid=1100000003590493750&base=13
http://factordb.com/index.php?showid=1100000002616382906&base=13
http://factordb.com/index.php?showid=1100000000765961441&base=13
http://factordb.com/index.php?showid=1100000003590430825&base=13
http://factordb.com/index.php?showid=1100000002632396910&base=13
http://factordb.com/index.php?showid=1100000000765961452&base=13
0
14 650 4D19698
34D708
8D14185
886B
408349
8C793
1879B
6B772B
46309
A593
19699
710
144
87
86
81
81
80
65
60
22578
814
165
100
99
93
92
92
74
69
5×1419698−1
47×14708−1
9×14143−79
(8×1487+31)/13
4×1485+65
(116×1480−129)/13
(21×1480+31)/13
(89×1479−1649)/13
(4×1465−667)/13
(10×1460−101)/13
http://factordb.com/index.php?id=1100000000884560233&open=prime
http://factordb.com/index.php?id=1100000001540144903&open=prime
http://factordb.com/index.php?id=1100000003575856650&open=ecm
http://factordb.com/index.php?id=1100000002321014379&open=ecm
http://factordb.com/index.php?id=1100000000823937973&open=ecm
http://factordb.com/index.php?id=1100000002631073246&open=ecm
http://factordb.com/index.php?id=1100000002384401372&open=ecm
http://factordb.com/index.php?id=1100000002631077787&open=ecm
http://factordb.com/index.php?id=1100000000840126683&open=ecm
http://factordb.com/index.php?id=1100000002321038522&open=ecm
http://factordb.com/index.php?showid=1100000000884560233&base=14
http://factordb.com/index.php?showid=1100000001540144903&base=14
http://factordb.com/index.php?showid=1100000003575856650&base=14
http://factordb.com/index.php?showid=1100000002321014379&base=14
http://factordb.com/index.php?showid=1100000000823937973&base=14
http://factordb.com/index.php?showid=1100000002631073246&base=14
http://factordb.com/index.php?showid=1100000002384401372&base=14
http://factordb.com/index.php?showid=1100000002631077787&base=14
http://factordb.com/index.php?showid=1100000000840126683&base=14
http://factordb.com/index.php?showid=1100000002321038522&base=14
0
15 1284 715597
E145397
9610408
773CE
759CCE
503317
EB31
6330261
705024B
B70241
157
148
107
75
62
36
32
30
28
27
185
175
126
88
73
42
38
35
33
32
(15157+59)/2
15148−2558
(66×15106−619)/7
(1575+163)/2
(1562+2413)/2
5×1535+22
(207×1531−11)/14
1398×1527+1
1580×1525+11
172×1525+1
http://factordb.com/index.php?id=1100000002454891840&open=ecm
http://factordb.com/index.php?id=1100000002454900849&open=ecm
http://factordb.com/index.php?id=1100000000823937997&open=ecm
http://factordb.com/index.php?id=1100000003588407143&open=ecm
http://factordb.com/index.php?id=1100000003588407386&open=ecm
http://factordb.com/index.php?id=1100000002632398579&open=ecm
http://factordb.com/index.php?id=1100000002321033312&open=ecm
http://factordb.com/index.php?id=1100000002391199877&open=ecm
http://factordb.com/index.php?id=1100000003588407806&open=ecm
http://factordb.com/index.php?id=1100000000851967288&open=ecm
http://factordb.com/index.php?showid=1100000002454891840&base=15
http://factordb.com/index.php?showid=1100000002454900849&base=15
http://factordb.com/index.php?showid=1100000000823937997&base=15
http://factordb.com/index.php?showid=1100000003588407143&base=15
http://factordb.com/index.php?showid=1100000003588407386&base=15
http://factordb.com/index.php?showid=1100000002632398579&base=15
http://factordb.com/index.php?showid=1100000002321033312&base=15
http://factordb.com/index.php?showid=1100000002391199877&base=15
http://factordb.com/index.php?showid=1100000003588407806&base=15
http://factordb.com/index.php?showid=1100000000851967288&base=15
0
16 2347 3116137AF
472785DD
DB32234
D0B17804
5BC3700D
90354291
300F1960AF
201713321
F81517F
FAF106245
116139
72787
32235
17806
3703
3545
1965
1717
1519
1066
139845
87644
38815
21441
4459
4269
2366
2067
1830
1284
(16116139+619)/5
(4×1672787+2291)/15
(206×1632234−11)/15
(3131×1617804−11)/15
(459×163701+1)/5
9×163544+145
769×161962−81
2×161716+801
(233×161518+97)/15
251×161064−187
http://factordb.com/index.php?id=1100000003851731988&open=prime
http://factordb.com/index.php?id=1100000003615909841&open=prime
http://factordb.com/index.php?id=1100000002383583629&open=prime
http://factordb.com/index.php?id=1100000003589278511&open=prime
http://factordb.com/index.php?id=1100000000993764322&open=prime
http://factordb.com/index.php?id=1100000000633424191&open=prime
http://factordb.com/index.php?id=1100000003588368750&open=prime
http://factordb.com/index.php?id=1100000003588386735&open=prime
http://factordb.com/index.php?id=1100000000633744824&open=prime
http://factordb.com/index.php?id=1100000003588387610&open=prime
http://factordb.com/index.php?showid=1100000003851731988&base=16
http://factordb.com/index.php?showid=1100000003615909841&base=16
http://factordb.com/index.php?showid=1100000002383583629&base=16
http://factordb.com/index.php?showid=1100000003589278511&base=16
http://factordb.com/index.php?showid=1100000000993764322&base=16
http://factordb.com/index.php?showid=1100000000633424191&base=16
http://factordb.com/index.php?showid=1100000003588368750&base=16
http://factordb.com/index.php?showid=1100000003588386735&base=16
http://factordb.com/index.php?showid=1100000000633744824&base=16
http://factordb.com/index.php?showid=1100000003588387610&base=16
0
17 10415~10427 95F198855
B0189083DB
F701867671
9701660471
510124074D
49111333
B671032E
570513101
E9B44732
D0GD37096
198857
189086
186770
166050
124077
111334
67105
51313
44734
37099
244684
232661
229811
204316
152670
136991
82570
63138
55043
45649
(2543×17198855−15)/16
11×17189085+232
262×17186768+1
160×17166048+1
86×17124075+13
(73×17111333−9)/16
(11×1767105−2411)/16
92×1751311+1
(3963×1744732−11)/16
(60381×1737096−13)/16
http://factordb.com/index.php?id=1100000008610514108&open=prime
http://factordb.com/index.php?id=1100000008610515753&open=prime
http://factordb.com/index.php?id=1100000000765961429&open=prime
http://factordb.com/index.php?id=1100000000765961411&open=prime
http://factordb.com/index.php?id=1100000008610516879&open=prime
http://factordb.com/index.php?id=1100000000808118219&open=prime
http://factordb.com/index.php?id=1100000003993647842&open=prime
http://factordb.com/index.php?id=1100000000765961389&open=prime
http://factordb.com/index.php?id=1100000003883765450&open=prime
http://factordb.com/index.php?id=1100000003848346668&open=prime
http://factordb.com/index.php?showid=1100000008610514108&base=17
http://factordb.com/index.php?showid=1100000008610515753&base=17
http://factordb.com/index.php?showid=1100000000765961429&base=17
http://factordb.com/index.php?showid=1100000000765961411&base=17
http://factordb.com/index.php?showid=1100000008610516879&base=17
http://factordb.com/index.php?showid=1100000000808118219&base=17
http://factordb.com/index.php?showid=1100000003993647842&base=17
http://factordb.com/index.php?showid=1100000000765961389&base=17
http://factordb.com/index.php?showid=1100000003883765450&base=17
http://factordb.com/index.php?showid=1100000003848346668&base=17
12 200000
18 549 C06268C5
H766FH
80298B
C0116F5
HD93
GG0301
CF305
B196B
CCF145
714G7
6271
768
300
119
94
33
32
21
17
16
7872
965
377
150
118
42
41
27
22
20
12×186270+221
18768−37
8×18299+11
12×18118+275
(302×1893−13)/17
304×1831+1
(219×1831−185)/17
(11×1821−1541)/17
(3891×1815−185)/17
(7×1816+2747)/17
http://factordb.com/index.php?id=1100000003590442437&open=prime
http://factordb.com/index.php?id=1100000003590430490&open=prime
http://factordb.com/index.php?id=1100000002355574745&open=prime
http://factordb.com/index.php?id=1100000002632837015&open=ecm
http://factordb.com/index.php?id=1100000002321052894&open=ecm
http://factordb.com/index.php?id=1100000000819230161&open=ecm
http://factordb.com/index.php?id=1100000002631240657&open=ecm
http://factordb.com/index.php?id=1100000003590430474&open=ecm
http://factordb.com/index.php?id=1100000003590430470&open=ecm
http://factordb.com/index.php?id=1100000003590430465&open=ecm
http://factordb.com/index.php?showid=1100000003590442437&base=18
http://factordb.com/index.php?showid=1100000003590430490&base=18
http://factordb.com/index.php?showid=1100000002355574745&base=18
http://factordb.com/index.php?showid=1100000002632837015&base=18
http://factordb.com/index.php?showid=1100000002321052894&base=18
http://factordb.com/index.php?showid=1100000000819230161&base=18
http://factordb.com/index.php?showid=1100000002631240657&base=18
http://factordb.com/index.php?showid=1100000003590430474&base=18
http://factordb.com/index.php?showid=1100000003590430470&base=18
http://factordb.com/index.php?showid=1100000003590430465&base=18
0
19 31417~31434 1E701228961
40121846HB5
35120562
FH0H112659
FG6110984
H862916
D90730469
4F0498476
2482247
2458867A
122900
121850
120563
112662
110986
86292
73049
49850
48225
45888
157158
155816
154170
144067
110347
141924
93412
63746
61667
58679
634×19122897+1
4×19121849+6351
(59×19120562−5)/18
(103301×19112659−17)/18
(904×19110984−1)/3
(17×1986292−215)/18
256×1973047+9
91×1949848+6
(1948225+44)/9
(1945888+926)/9
http://factordb.com/index.php?id=1100000001582289581&open=prime
http://factordb.com/index.php?id=1100000008755307222&open=prime
http://factordb.com/index.php?id=1100000005513825027&open=prime
http://factordb.com/index.php?id=1100000008755311453&open=prime
http://factordb.com/index.php?id=1100000000808118212&open=prime
http://factordb.com/index.php?id=1100000004163040839&open=prime
http://factordb.com/index.php?id=1100000003998413751&open=prime
http://factordb.com/index.php?id=1100000000808118332&open=prime
http://factordb.com/index.php?id=1100000003949188041&open=prime
http://factordb.com/index.php?id=1100000003949189035&open=prime
http://factordb.com/index.php?showid=1100000001582289581&base=19
http://factordb.com/index.php?showid=1100000008755307222&base=19
http://factordb.com/index.php?showid=1100000005513825027&base=19
http://factordb.com/index.php?showid=1100000008755311453&base=19
http://factordb.com/index.php?showid=1100000000808118212&base=19
http://factordb.com/index.php?showid=1100000004163040839&base=19
http://factordb.com/index.php?showid=1100000003998413751&base=19
http://factordb.com/index.php?showid=1100000000808118332&base=19
http://factordb.com/index.php?showid=1100000003949188041&base=19
http://factordb.com/index.php?showid=1100000003949189035&base=19
17 200000
20 3314 G06269D
CD2449
501163AJ
J65505J
JCJ629
E566C7
3A5273
G44799
EC04297
40387404B
6271
2450
1166
658
631
568
529
449
432
392
8159
3188
1517
857
821
739
688
585
562
510
16×206270+13
(241×202449−13)/19
5×201165+219
20658−7881
393×20629−1
(14×20568−907)/19
(67×20528−143)/19
(16×20449−2809)/19
292×20430+7
4×20391+32091
http://factordb.com/index.php?id=1100000003590539457&open=prime
http://factordb.com/index.php?id=1100000002325393915&open=prime
http://factordb.com/index.php?id=1100000003590502412&open=prime
http://factordb.com/index.php?id=1100000003590502490&open=prime
http://factordb.com/index.php?id=1100000001559454258&open=prime
http://factordb.com/index.php?id=1100000003590502516&open=prime
http://factordb.com/index.php?id=1100000003590502531&open=prime
http://factordb.com/index.php?id=1100000000840126753&open=prime
http://factordb.com/index.php?id=1100000002633348702&open=prime
http://factordb.com/index.php?id=1100000003590502563&open=prime
http://factordb.com/index.php?showid=1100000003590539457&base=20
http://factordb.com/index.php?showid=1100000002325393915&base=20
http://factordb.com/index.php?showid=1100000003590502412&base=20
http://factordb.com/index.php?showid=1100000003590502490&base=20
http://factordb.com/index.php?showid=1100000001559454258&base=20
http://factordb.com/index.php?showid=1100000003590502516&base=20
http://factordb.com/index.php?showid=1100000003590502531&base=20
http://factordb.com/index.php?showid=1100000000840126753&base=20
http://factordb.com/index.php?showid=1100000002633348702&base=20
http://factordb.com/index.php?showid=1100000003590502563&base=20
0
21 13386~13394 271844999D
F9178771D
2FC112022A
7108450ID
40473339G
B9045019E5
HD37414
BD35027B
9903323999H
530606FEK
184502
178773
112025
108452
47336
45023
37415
35029
33244
30609
243952
236377
148121
143397
62588
59531
49471
46316
43956
40472
(47×21184501+953)/20
(309×21178772+71)/20
(288×21112023−13)/5
(7×21108452+4733)/20
4×2147335+205
240×2145021+299
(353×2137414−13)/20
(233×2135028−53)/20
198×2133242+4175
(2130609+18455)/4
http://factordb.com/index.php?id=1100000008700600990&open=prime
http://factordb.com/index.php?id=1100000008700596669&open=prime
http://factordb.com/index.php?id=1100000008700593358&open=prime
http://factordb.com/index.php?id=1100000008700586183&open=prime
http://factordb.com/index.php?id=1100000000808118331&open=prime
http://factordb.com/index.php?id=1100000003996110311&open=prime
http://factordb.com/index.php?id=1100000003996110479&open=prime
http://factordb.com/index.php?id=1100000003996110718&open=prime
http://factordb.com/index.php?id=1100000003996110944&open=prime
http://factordb.com/index.php?id=1100000003996111130&open=prime
http://factordb.com/index.php?showid=1100000008700600990&base=21
http://factordb.com/index.php?showid=1100000008700596669&base=21
http://factordb.com/index.php?showid=1100000008700593358&base=21
http://factordb.com/index.php?showid=1100000008700586183&base=21
http://factordb.com/index.php?showid=1100000000808118331&base=21
http://factordb.com/index.php?showid=1100000003996110311&base=21
http://factordb.com/index.php?showid=1100000003996110479&base=21
http://factordb.com/index.php?showid=1100000003996110718&base=21
http://factordb.com/index.php?showid=1100000003996110944&base=21
http://factordb.com/index.php?showid=1100000003996111130&base=21
8 200000
22 8003 BK220015
738152L
L2385KE7
7959K7
J0767IGGJ
K0760EC1
I626AF
E60496L
L483G3
L0454B63
22003
3817
2388
961
772
764
628
499
485
458
29538
5124
3206
1290
1037
1026
843
670
652
615
(251×2222002−335)/21
(223817−289)/3
222388−653
(22961+857)/3
19×22771+199779
20×22763+7041
(6×22628−1259)/7
314×22497+21
22485−129
21×22457+5459
http://factordb.com/index.php?id=1100000003594696838&open=prime
http://factordb.com/index.php?id=1100000003591359839&open=prime
http://factordb.com/index.php?id=1100000003591360774&open=prime
http://factordb.com/index.php?id=1100000003591361817&open=prime
http://factordb.com/index.php?id=1100000003591362567&open=prime
http://factordb.com/index.php?id=1100000000632724415&open=prime
http://factordb.com/index.php?id=1100000000632724334&open=prime
http://factordb.com/index.php?id=1100000000632703239&open=prime
http://factordb.com/index.php?id=1100000003591364730&open=prime
http://factordb.com/index.php?id=1100000003591365331&open=prime
http://factordb.com/index.php?showid=1100000003594696838&base=22
http://factordb.com/index.php?showid=1100000003591359839&base=22
http://factordb.com/index.php?showid=1100000003591360774&base=22
http://factordb.com/index.php?showid=1100000003591361817&base=22
http://factordb.com/index.php?showid=1100000003591362567&base=22
http://factordb.com/index.php?showid=1100000000632724415&base=22
http://factordb.com/index.php?showid=1100000000632724334&base=22
http://factordb.com/index.php?showid=1100000000632703239&base=22
http://factordb.com/index.php?showid=1100000003591364730&base=22
http://factordb.com/index.php?showid=1100000003591365331&base=22
0
23 65178~65265 B093046FB
L86444D
AJ810654
207356098
J68217G4
D7066770B
5F623406
A7M761532
B30611365
EJ52169
93049
86445
81067
73563
68219
66773
62342
61535
61139
52170
126708
117715
110391
100172
92896
90927
84893
83794
83255
71042
11×2393048+356
(21×2386445−197)/22
(239×2381066−349)/22
2×2373562+215
(19×2368219−1867)/22
306×2366771+11
(125×2362341−213)/22
(120413×2361532−7)/22
256×2361137+5
(327×2352169−19)/22
http://factordb.com/index.php?id=1100000004691540361&open=prime
http://factordb.com/index.php?id=1100000004691546739&open=prime
http://factordb.com/index.php?id=1100000004691548070&open=prime
http://factordb.com/index.php?id=1100000004691548569&open=prime
http://factordb.com/index.php?id=1100000004691549462&open=prime
http://factordb.com/index.php?id=1100000004691549803&open=prime
http://factordb.com/index.php?id=1100000004691551005&open=prime
http://factordb.com/index.php?id=1100000004691556967&open=prime
http://factordb.com/index.php?id=1100000004691557254&open=prime
http://factordb.com/index.php?id=1100000004691557548&open=prime
http://factordb.com/index.php?showid=1100000004691540361&base=23
http://factordb.com/index.php?showid=1100000004691546739&base=23
http://factordb.com/index.php?showid=1100000004691548070&base=23
http://factordb.com/index.php?showid=1100000004691548569&base=23
http://factordb.com/index.php?showid=1100000004691549462&base=23
http://factordb.com/index.php?showid=1100000004691549803&base=23
http://factordb.com/index.php?showid=1100000004691551005&base=23
http://factordb.com/index.php?showid=1100000004691556967&base=23
http://factordb.com/index.php?showid=1100000004691557254&base=23
http://factordb.com/index.php?showid=1100000004691557548&base=23
87 100000
24 3409 N00N8129LN
88N5951
A029518ID
D2698LD
N2644LLN
BC0331B
203137
C7298
D0259KKD
I0241I5
8134
5953
2955
2700
2647
334
315
299
263
244
11227
8216
4079
3727
3654
461
434
413
363
337
13249×248131−49
201×245951−1
10×242954+5053
(13×242700+4403)/23
242647−1201
276×24332+11
2×24314+7
(283×24298−7)/23
13×24262+12013
18×24243+437
http://factordb.com/index.php?id=1100000003593391606&open=prime
http://factordb.com/index.php?id=1100000003593275880&open=prime
http://factordb.com/index.php?id=1100000003593269654&open=prime
http://factordb.com/index.php?id=1100000003593269876&open=prime
http://factordb.com/index.php?id=1100000003593270089&open=prime
http://factordb.com/index.php?id=1100000002633359842&open=prime
http://factordb.com/index.php?id=1100000002355610241&open=prime
http://factordb.com/index.php?id=1100000002326181235&open=prime
http://factordb.com/index.php?id=1100000003593270725&open=prime
http://factordb.com/index.php?id=1100000002633360037&open=prime
http://factordb.com/index.php?showid=1100000003593391606&base=24
http://factordb.com/index.php?showid=1100000003593275880&base=24
http://factordb.com/index.php?showid=1100000003593269654&base=24
http://factordb.com/index.php?showid=1100000003593269876&base=24
http://factordb.com/index.php?showid=1100000003593270089&base=24
http://factordb.com/index.php?showid=1100000002633359842&base=24
http://factordb.com/index.php?showid=1100000002355610241&base=24
http://factordb.com/index.php?showid=1100000002326181235&base=24
http://factordb.com/index.php?showid=1100000003593270725&base=24
http://factordb.com/index.php?showid=1100000002633360037&base=24
0
25 133639~133724 E98396FOO
1J710962721
NB0855985NH
D7081581JJ7
F080054HL
J01075943E7
K677715I
LO66377KC
KJD0633991
7060892D711
98399
96277
85603
81586
80057
75948
67773
66380
63403
60897
137556
134589
119668
114053
111915
106171
94743
92796
88634
85130
(7×2598399+10613)/12
27676×2596273+1
586×2585601+3717
332×2581584+12357
15×2580056+446
11876×2575945+357
(5×2567773−2267)/6
22×2566379−113
12988×2563400+1
7×2560896+207526
http://factordb.com/index.php?id=1100000000808118215&open=prime
http://factordb.com/index.php?id=1100000003983674902&open=prime
http://factordb.com/index.php?id=1100000004909706420&open=prime
http://factordb.com/index.php?id=1100000004909733266&open=prime
http://factordb.com/index.php?id=1100000004909750102&open=prime
http://factordb.com/index.php?id=1100000004909770736&open=prime
http://factordb.com/index.php?id=1100000004586986394&open=prime
http://factordb.com/index.php?id=1100000000808118270&open=prime
http://factordb.com/index.php?id=1100000004586986664&open=prime
http://factordb.com/index.php?id=1100000004586986798&open=prime
http://factordb.com/index.php?showid=1100000000808118215&base=25
http://factordb.com/index.php?showid=1100000003983674902&base=25
http://factordb.com/index.php?showid=1100000004909706420&base=25
http://factordb.com/index.php?showid=1100000004909733266&base=25
http://factordb.com/index.php?showid=1100000004909750102&base=25
http://factordb.com/index.php?showid=1100000004909770736&base=25
http://factordb.com/index.php?showid=1100000004586986394&base=25
http://factordb.com/index.php?showid=1100000000808118270&base=25
http://factordb.com/index.php?showid=1100000004586986664&base=25
http://factordb.com/index.php?showid=1100000004586986798&base=25
85 100000
26 25256~25259 85M197060B
M0611862BB
J044303KCB
6K233005
LD0209757
720279OL
5193916F
9GDK15920P
M8772P
K04364I5
197063
61190
44307
23302
20978
20281
19393
15924
8773
4367
278839
86583
62694
32972
29684
28697
27440
22532
12414
6180
(5347×26197061−297)/25
22×2661189+1649
19×2644306+13843
(34×2623301−79)/5
559×2620976+7
(7×2620281+11393)/25
(2619393+179)/5
(32569×2615921+21)/5
(22×268773+53)/25
20×264366+473
http://factordb.com/index.php?id=1100000008573990023&open=prime
http://factordb.com/index.php?id=1100000003968169875&open=prime
http://factordb.com/index.php?id=1100000003968156595&open=prime
http://factordb.com/index.php?id=1100000003892628745&open=prime
http://factordb.com/index.php?id=1100000003892628658&open=prime
http://factordb.com/index.php?id=1100000003892628605&open=prime
http://factordb.com/index.php?id=1100000003850151202&open=prime
http://factordb.com/index.php?id=1100000003850155316&open=prime
http://factordb.com/index.php?id=1100000000758011195&open=prime
http://factordb.com/index.php?id=1100000002634136508&open=prime
http://factordb.com/index.php?showid=1100000008573990023&base=26
http://factordb.com/index.php?showid=1100000003968169875&base=26
http://factordb.com/index.php?showid=1100000003968156595&base=26
http://factordb.com/index.php?showid=1100000003892628745&base=26
http://factordb.com/index.php?showid=1100000003892628658&base=26
http://factordb.com/index.php?showid=1100000003892628605&base=26
http://factordb.com/index.php?showid=1100000003850151202&base=26
http://factordb.com/index.php?showid=1100000003850155316&base=26
http://factordb.com/index.php?showid=1100000000758011195&base=26
http://factordb.com/index.php?showid=1100000002634136508&base=26
3 200000
27 102852~102896 CA0F88883A
GNN078795N
O44L660167
NJ064369H
ME496409G
PH0478901
QF47165AF5
J040791PD
51039164I07
NGN036329N
88887
78799
66020
64372
49643
47893
47169
40794
39169
36333
127230
112790
94499
92140
71058
68553
67516
58391
56065
52006
(234483×2788884−145)/26
12308×2778796+23
(457829×2766017−385)/26
640×2764370+17
(293×2749642−1736)/13
692×2747891+1
(691×2747168−95045)/26
19×2740793+688
136×2739167+13129
17222×2736330+23
http://factordb.com/index.php?id=1100000000808118233&open=prime
http://factordb.com/index.php?id=1100000004681348398&open=prime
http://factordb.com/index.php?id=1100000004374140861&open=prime
http://factordb.com/index.php?id=1100000004374138999&open=prime
http://factordb.com/index.php?id=1100000000819229859&open=prime
http://factordb.com/index.php?id=1100000004102754118&open=prime
http://factordb.com/index.php?id=1100000004102755880&open=prime
http://factordb.com/index.php?id=1100000004102758254&open=prime
http://factordb.com/index.php?id=1100000004102875088&open=prime
http://factordb.com/index.php?id=1100000004103372866&open=prime
http://factordb.com/index.php?showid=1100000000808118233&base=27
http://factordb.com/index.php?showid=1100000004681348398&base=27
http://factordb.com/index.php?showid=1100000004374140861&base=27
http://factordb.com/index.php?showid=1100000004374138999&base=27
http://factordb.com/index.php?showid=1100000000819229859&base=27
http://factordb.com/index.php?showid=1100000004102754118&base=27
http://factordb.com/index.php?showid=1100000004102755880&base=27
http://factordb.com/index.php?showid=1100000004102758254&base=27
http://factordb.com/index.php?showid=1100000004102875088&base=27
http://factordb.com/index.php?showid=1100000004103372866&base=27
44 100000
28 25528~25529 O4O945359
5OA31238F
N624051LR
D0526777D
QO423969
537468P
G01899AN
A14236F
5I1370F
51332P8P
94538
31241
24054
5271
4242
3748
1902
1425
1372
1335
136812
45210
34810
7628
6139
5424
2753
2062
1985
1932
(6092×2894536−143)/9
(4438×2831239+125)/27
(209×2824053+3967)/9
13×285270+5697
(242×284241−4679)/9
(5×283748+2803)/27
16×281901+303
(10×281425−2899)/27
(17×281371−11)/3
(5×281335+426163)/27
http://factordb.com/index.php?id=1100000000808118231&open=prime
http://factordb.com/index.php?id=1100000003880455200&open=prime
http://factordb.com/index.php?id=1100000003879667576&open=prime
http://factordb.com/index.php?id=1100000003850151420&open=prime
http://factordb.com/index.php?id=1100000000840839934&open=prime
http://factordb.com/index.php?id=1100000003850161974&open=prime
http://factordb.com/index.php?id=1100000003850161973&open=prime
http://factordb.com/index.php?id=1100000000840839947&open=prime
http://factordb.com/index.php?id=1100000003850161972&open=prime
http://factordb.com/index.php?id=1100000003850161965&open=prime
http://factordb.com/index.php?showid=1100000000808118231&base=28
http://factordb.com/index.php?showid=1100000003880455200&base=28
http://factordb.com/index.php?showid=1100000003879667576&base=28
http://factordb.com/index.php?showid=1100000003850151420&base=28
http://factordb.com/index.php?showid=1100000000840839934&base=28
http://factordb.com/index.php?showid=1100000003850161974&base=28
http://factordb.com/index.php?showid=1100000003850161973&base=28
http://factordb.com/index.php?showid=1100000000840839947&base=28
http://factordb.com/index.php?showid=1100000003850161972&base=28
http://factordb.com/index.php?showid=1100000003850161965&base=28
1 900000
29 355242~355367 830993774
GP5J94935
P05J90289
BBD088888PB
8B85333G
L0815715955
E077372L7B
LPC751519
JR0746227
B745010RP
99380
94938
90292
88893
85335
81576
77376
75154
74625
74504
145333
138837
132043
129997
124794
119297
113155
109905
109132
108955
235×2999378+4
(397227×2994935−19)/28
(588859×2990289−19)/28
9583×2988890+736
(235×2985334+129)/14
21×2981575+129664
14×2977375+17875
(4441×2975152−24)/7
578×2974623+7
(11×2974504−245655)/28
http://factordb.com/index.php?id=1100000008253882372&open=prime
http://factordb.com/index.php?id=1100000008253893542&open=prime
http://factordb.com/index.php?id=1100000008253899083&open=prime
http://factordb.com/index.php?id=1100000008253909183&open=prime
http://factordb.com/index.php?id=1100000008253921388&open=prime
http://factordb.com/index.php?id=1100000008253925955&open=prime
http://factordb.com/index.php?id=1100000008253931446&open=prime
http://factordb.com/index.php?id=1100000000808118236&open=prime
http://factordb.com/index.php?id=1100000008253934219&open=prime
http://factordb.com/index.php?id=1100000008253936120&open=prime
http://factordb.com/index.php?showid=1100000008253882372&base=29
http://factordb.com/index.php?showid=1100000008253893542&base=29
http://factordb.com/index.php?showid=1100000008253899083&base=29
http://factordb.com/index.php?showid=1100000008253909183&base=29
http://factordb.com/index.php?showid=1100000008253921388&base=29
http://factordb.com/index.php?showid=1100000008253925955&base=29
http://factordb.com/index.php?showid=1100000008253931446&base=29
http://factordb.com/index.php?showid=1100000000808118236&base=29
http://factordb.com/index.php?showid=1100000008253934219&base=29
http://factordb.com/index.php?showid=1100000008253936120&base=29
125 100000
30 2619 OT34205
I024608D
54882J
C010221
M0547SS7
M241QB
AN206
50164B
J153QJ
J94QQJ
34206
24610
4883
1024
551
243
207
166
155
97
50527
36352
7213
1513
814
359
306
245
229
144
25×3034205−1
18×3024609+13
(5×304883+401)/29
12×301023+1
22×30550+26047
(22×30243+3139)/29
(313×30206−23)/29
5×30165+11
(19×30155+6071)/29
(19×3097+188771)/29
http://factordb.com/index.php?id=1100000000800812865&open=prime
http://factordb.com/index.php?id=1100000003593967511&open=prime
http://factordb.com/index.php?id=1100000002327649423&open=prime
http://factordb.com/index.php?id=1100000000785448736&open=prime
http://factordb.com/index.php?id=1100000003593407988&open=prime
http://factordb.com/index.php?id=1100000003593408295&open=prime
http://factordb.com/index.php?id=1100000002327651073&open=prime
http://factordb.com/index.php?id=1100000002356282476&open=ecm
http://factordb.com/index.php?id=1100000003593409109&open=ecm
http://factordb.com/index.php?id=1100000003593409165&open=ecm
http://factordb.com/index.php?showid=1100000000800812865&base=30
http://factordb.com/index.php?showid=1100000003593967511&base=30
http://factordb.com/index.php?showid=1100000002327649423&base=30
http://factordb.com/index.php?showid=1100000000785448736&base=30
http://factordb.com/index.php?showid=1100000003593407988&base=30
http://factordb.com/index.php?showid=1100000003593408295&base=30
http://factordb.com/index.php?showid=1100000002327651073&base=30
http://factordb.com/index.php?showid=1100000002356282476&base=30
http://factordb.com/index.php?showid=1100000003593409109&base=30
http://factordb.com/index.php?showid=1100000003593409165&base=30
0
31 569323~569400 2IIF91805
B088309APO9
J0T77516
J09077128NNN
D69861QO
9MH068637D
J67162D
N06697132P
DDDQ064088TD
U63861CM3
91808
88314
77518
77134
69863
68641
67163
66975
64094
63864
136918
131708
115608
115035
104191
102369
100165
99884
95587
95245
(4997×3191805−1)/2
11×3188313+322688
(17699×3177516−29)/30
18268×3177131+22839
(13×3169863+12407)/30
9348×3168638+13
(19×3167163−199)/30
23×3166974+2970
400205×3164090+912
3163864−17574
http://factordb.com/index.php?id=1100000007050395732&open=prime
http://factordb.com/index.php?id=1100000007050397309&open=prime
http://factordb.com/index.php?id=1100000007050398940&open=prime
http://factordb.com/index.php?id=1100000007050400178&open=prime
http://factordb.com/index.php?id=1100000006965878559&open=prime
http://factordb.com/index.php?id=1100000006965875678&open=prime
http://factordb.com/index.php?id=1100000006965873668&open=prime
http://factordb.com/index.php?id=1100000006965870538&open=prime
http://factordb.com/index.php?id=1100000006965868103&open=prime
http://factordb.com/index.php?id=1100000006965865343&open=prime
http://factordb.com/index.php?showid=1100000007050395732&base=31
http://factordb.com/index.php?showid=1100000007050397309&base=31
http://factordb.com/index.php?showid=1100000007050398940&base=31
http://factordb.com/index.php?showid=1100000007050400178&base=31
http://factordb.com/index.php?showid=1100000006965878559&base=31
http://factordb.com/index.php?showid=1100000006965875678&base=31
http://factordb.com/index.php?showid=1100000006965873668&base=31
http://factordb.com/index.php?showid=1100000006965870538&base=31
http://factordb.com/index.php?showid=1100000006965868103&base=31
http://factordb.com/index.php?showid=1100000006965865343&base=31
77 100000
32 168882~169002 V9958363
689074AF
877700H
Q77401EQQQ3
8772493
JM76028L
E72919IL
B067680CB
GK66076F
KN65022
99585
89076
77701
77406
77250
76030
72921
67683
66078
65023
149891
134073
116952
116508
116273
114437
109757
101873
99458
97870
3299585−829
(6×3289076+4241)/31
(8×3277701+271)/31
(26×3277406−390071011)/31
(8×3277250−163)/31
(611×3276029−53)/31
(14×3272921+4171)/31
11×3267682+395
(516×3266077−175)/31
(643×3265022−23)/31
http://factordb.com/index.php?id=1100000005514892191&open=prime
http://factordb.com/index.php?id=1100000005514897129&open=prime
http://factordb.com/index.php?id=1100000005514901700&open=prime
http://factordb.com/index.php?id=1100000005514915338&open=prime
http://factordb.com/index.php?id=1100000005514918574&open=prime
http://factordb.com/index.php?id=1100000005514922523&open=prime
http://factordb.com/index.php?id=1100000004591654373&open=prime
http://factordb.com/index.php?id=1100000004591654467&open=prime
http://factordb.com/index.php?id=1100000004591654632&open=prime
http://factordb.com/index.php?id=1100000004591654952&open=prime
http://factordb.com/index.php?showid=1100000005514892191&base=32
http://factordb.com/index.php?showid=1100000005514897129&base=32
http://factordb.com/index.php?showid=1100000005514901700&base=32
http://factordb.com/index.php?showid=1100000005514915338&base=32
http://factordb.com/index.php?showid=1100000005514918574&base=32
http://factordb.com/index.php?showid=1100000005514922523&base=32
http://factordb.com/index.php?showid=1100000004591654373&base=32
http://factordb.com/index.php?showid=1100000004591654467&base=32
http://factordb.com/index.php?showid=1100000004591654632&base=32
http://factordb.com/index.php?showid=1100000004591654952&base=32
120 100000
33 280012~280093 DP95093M5
HJ094295J
9093597Q
9F093157N
789449333H
K3807516K
D801079UD
VFU72204FK
J687152BJ
DF068367J
95096
94298
93599
93160
89453
80754
80110
72208
68718
68370
144405
143193
142131
141465
135835
122626
121648
109649
104350
103821
(441×3395095−3833)/32
580×3394296+19
9×3393598+26
312×3393158+23
(7×3389453−4743239)/32
(643×3380753+3709)/32
(13×3380110−121453)/32
(16623×3372206−8095)/16
(19×3368718−600883)/32
444×3368368+19
http://factordb.com/index.php?id=1100000005652348775&open=prime
http://factordb.com/index.php?id=1100000005652362811&open=prime
http://factordb.com/index.php?id=1100000005652375073&open=prime
http://factordb.com/index.php?id=1100000005652389776&open=prime
http://factordb.com/index.php?id=1100000005652430746&open=prime
http://factordb.com/index.php?id=1100000005652446200&open=prime
http://factordb.com/index.php?id=1100000005652461592&open=prime
http://factordb.com/index.php?id=1100000004614764298&open=prime
http://factordb.com/index.php?id=1100000004614770536&open=prime
http://factordb.com/index.php?id=1100000004614784274&open=prime
http://factordb.com/index.php?showid=1100000005652348775&base=33
http://factordb.com/index.php?showid=1100000005652362811&base=33
http://factordb.com/index.php?showid=1100000005652375073&base=33
http://factordb.com/index.php?showid=1100000005652389776&base=33
http://factordb.com/index.php?showid=1100000005652430746&base=33
http://factordb.com/index.php?showid=1100000005652446200&base=33
http://factordb.com/index.php?showid=1100000005652461592&base=33
http://factordb.com/index.php?showid=1100000004614764298&base=33
http://factordb.com/index.php?showid=1100000004614770536&base=33
http://factordb.com/index.php?showid=1100000004614784274&base=33
81 100000
34 184785~184832 GFGC999965
9097950FJ
NM085218KX
F83189H2HP
P79441444P
6770278X
XQIQ72241D
T66530IF
466152B
2EEC660397
100000
97953
85222
83193
79445
77029
72245
66532
66153
66043
153148
150013
130516
127408
121669
117968
110642
101893
101312
101143
(209246×3499997−81)/11
9×3497952+529
804×3485220+713
(5×3483193+700233)/11
(25×3479445−28062367)/33
(2×3477029+1043)/11
(1288676×3472242−455)/33
(29×3466532−12833)/33
(4×3466153+227)/33
(30826×3466040−59)/11
http://factordb.com/index.php?id=1100000004702891268&open=prime
http://factordb.com/index.php?id=1100000004702894713&open=prime
http://factordb.com/index.php?id=1100000004702900996&open=prime
http://factordb.com/index.php?id=1100000004702910376&open=prime
http://factordb.com/index.php?id=1100000004702913746&open=prime
http://factordb.com/index.php?id=1100000004702918600&open=prime
http://factordb.com/index.php?id=1100000004399656529&open=prime
http://factordb.com/index.php?id=1100000004399657696&open=prime
http://factordb.com/index.php?id=1100000004399658651&open=prime
http://factordb.com/index.php?id=1100000004399659716&open=prime
http://factordb.com/index.php?showid=1100000004702891268&base=34
http://factordb.com/index.php?showid=1100000004702894713&base=34
http://factordb.com/index.php?showid=1100000004702900996&base=34
http://factordb.com/index.php?showid=1100000004702910376&base=34
http://factordb.com/index.php?showid=1100000004702913746&base=34
http://factordb.com/index.php?showid=1100000004702918600&base=34
http://factordb.com/index.php?showid=1100000004399656529&base=34
http://factordb.com/index.php?showid=1100000004399657696&base=34
http://factordb.com/index.php?showid=1100000004399658651&base=34
http://factordb.com/index.php?showid=1100000004399659716&base=34
47 100000
35 720002~720062 N0N999719
V083669E73
N81563K7N
BJ081279N
J080062FUH
43V79754
976600K3
LB71366PB
Q64150H
50633975R
99974
83673
81566
81282
80066
79756
76602
71369
64151
63400
154367
129197
125944
125505
123628
123148
118279
110199
99054
97894
(27393×3599972−499)/34
31×3583672+17398
(23×3581566−144013)/34
404×3581280+23
19×3580065+19442
(4893×3579754−31)/34
(9×3576602+12877)/34
(725×3571368+16649)/34
(13×3564151−166)/17
5×3563399+202
http://factordb.com/index.php?id=1100000008248342445&open=prime
http://factordb.com/index.php?id=1100000008248353306&open=prime
http://factordb.com/index.php?id=1100000008248375642&open=prime
http://factordb.com/index.php?id=1100000008248397018&open=prime
http://factordb.com/index.php?id=1100000008248412468&open=prime
http://factordb.com/index.php?id=1100000008248418540&open=prime
http://factordb.com/index.php?id=1100000008248423670&open=prime
http://factordb.com/index.php?id=1100000008192119974&open=prime
http://factordb.com/index.php?id=1100000008192126630&open=prime
http://factordb.com/index.php?id=1100000008192129294&open=prime
http://factordb.com/index.php?showid=1100000008248342445&base=35
http://factordb.com/index.php?showid=1100000008248353306&base=35
http://factordb.com/index.php?showid=1100000008248375642&base=35
http://factordb.com/index.php?showid=1100000008248397018&base=35
http://factordb.com/index.php?showid=1100000008248412468&base=35
http://factordb.com/index.php?showid=1100000008248418540&base=35
http://factordb.com/index.php?showid=1100000008248423670&base=35
http://factordb.com/index.php?showid=1100000008192119974&base=35
http://factordb.com/index.php?showid=1100000008192126630&base=35
http://factordb.com/index.php?showid=1100000008192129294&base=35
60 100000
36 35286~35290 P81993SZ
S0750078H
7K26567Z
J10117LJ
VL07258J
EO06177V
FZ57773P
T0946181
RY4562H
OZ3932AZ
81995
75010
26569
10119
7261
6180
5780
4621
4564
3935
127609
116739
41349
15748
11301
9618
8996
7192
7103
6124
(5×3681995+821)/7
28×3675009+305
(53×3626568+101)/7
(19×3610119+2501)/35
1137×367259+19
528×366178+31
16×365779−1163
(36549×364619−289)/35
(979×364563−629)/35
25×363934−901
http://factordb.com/index.php?id=1100000002394962083&open=prime
http://factordb.com/index.php?id=1100000004020085177&open=prime
http://factordb.com/index.php?id=1100000003896952461&open=prime
http://factordb.com/index.php?id=1100000003807362491&open=prime
http://factordb.com/index.php?id=1100000003807362489&open=prime
http://factordb.com/index.php?id=1100000003807362488&open=prime
http://factordb.com/index.php?id=1100000003807362487&open=prime
http://factordb.com/index.php?id=1100000003807362486&open=prime
http://factordb.com/index.php?id=1100000003807362485&open=prime
http://factordb.com/index.php?id=1100000000840634476&open=prime
http://factordb.com/index.php?showid=1100000002394962083&base=36
http://factordb.com/index.php?showid=1100000004020085177&base=36
http://factordb.com/index.php?showid=1100000003896952461&base=36
http://factordb.com/index.php?showid=1100000003807362491&base=36
http://factordb.com/index.php?showid=1100000003807362489&base=36
http://factordb.com/index.php?showid=1100000003807362488&base=36
http://factordb.com/index.php?showid=1100000003807362487&base=36
http://factordb.com/index.php?showid=1100000003807362486&base=36
http://factordb.com/index.php?showid=1100000003807362485&base=36
http://factordb.com/index.php?showid=1100000000840634476&base=36
4 200000

The fully proof of Athena problem in decimal (base b = 10)

[edit | edit source]

Bold for the Athena primes, xy means x is a subsequence of y.

Assume p is a prime > 10, and the last digit of p must lie in {1,3,7,9}.

Case 1: p ends with 1.

In this case we can write p = x1. If x contains 1, 3, 4, 6, or 7, then (respectively) 11p, 31p, 41p, 61p, or 71p. Hence we may assume all digits of x are 0, 2, 5, 8, or 9.

Case 1.1: p begins with 2.

In this case we can write p = 2y1. If 5 ◁ y, then 251p. If 8 ◁ y, then 281p. If 9 ◁ y, then 29 ◁ p. Hence we may assume all digits of y are 0 or 2.

If 22 ◁ y, then 2221p. Hence we may assume y contains zero or one 2's.

If y contains no 2's, then p ∈ 2{0}1. But then, since the sum of the digits of p is 3, p is divisible by 3, so p cannot be prime.

If y contains exactly one 2, then we can write p = 2z2w1, where z,w ∈ {0}. If 0 ◁ z and 0 ◁ w, then 20201p. Hence we may assume either z or w is empty.

If z is empty, then p ∈ 22{0}1, and the smallest prime p ∈ 22{0}1 is 22000001.

If w is empty, then p ∈ 2{0}21, and the smallest prime p ∈ 2{0}21 is 20021.

Case 1.2: p begins with 5.

In this case we can write p = 5y1. If 2 ◁ y, then 521p. If 9 ◁ y, then 59 ◁ p. Hence we may assume all digits of y are 0, 5, or 8.

If 05 ◁ y, then 5051p. If 08 ◁ y, then 5081p. If 50 ◁ y, then 5501p. If 58 ◁ y, then 5581p. If 80 ◁ y, then 5801p. If 85 ◁ y, then 5851p. Hence we may assume y ∈ {0} ∪ {5} ∪ {8}.

If y ∈ {0}, then p ∈ 5{0}1. But then, since the sum of the digits of p is 6, p is divisible by 3, so p cannot be prime.

If y ∈ {5}, then p ∈ 5{5}1, and the smallest prime p ∈ 5{5}1 is 555555555551.

If y ∈ {8}, since if 88 ◁ y, then 881 ◁ p, hence we may assume y ∈ {𝜆,8}, and thus p ∈ {51,581}, but 51 and 581 are both composite.

Case 1.3: p begins with 8.

In this case we can write p = 8y1. If 2 ◁ y, then 821p. If 8 ◁ y, then 881p. If 9 ◁ y, then 89 ◁ p. Hence we may assume all digits of y are 0 or 5.

If 50 ◁ y, then 8501p. Hence we may assume y ∈ {0}{5}.

If 005 ◁ y, then 80051 ◁ p. Hence we may assume y ∈ {0} ∪ {5} ∪ 0{5}.

If y ∈ {0}, then p ∈ 8{0}1. But then, since the sum of the digits of p is 9, p is divisible by 3, so p cannot be prime.

If y ∈ {5}, since if 55555555555 ◁ y, then 555555555551 ◁ p, hence we may assume y ∈ {𝜆, 5, 55, 555, 5555, 55555, 555555, 5555555, 55555555, 555555555, 5555555555}, and thus p ∈ {81, 851, 8551, 85551, 855551, 8555551, 85555551, 855555551, 8555555551, 85555555551, 855555555551}, but all of these numbers are composite.

If y ∈ 0{5}, since if 55555555555 ◁ y, then 555555555551 ◁ p, hence we may assume y ∈ {0, 05, 055, 0555, 05555, 055555, 0555555, 05555555, 055555555, 0555555555, 05555555555}, and thus p ∈ {801, 8051, 80551, 805551, 8055551, 80555551, 805555551, 8055555551, 80555555551, 805555555551, 8055555555551}, and of these numbers only 80555551 and 8055555551 are primes, but 80555551 ◁ 8055555551, thus only 80555551 is a minimal element.

Case 1.4: p begins with 9.

In this case we can write p = 9y1. If 9 ◁ y, then 991p. Hence we may assume all digits of y are 0, 2, 5, or 8.

If 00 ◁ y, then 9001p. If 22 ◁ y, then 9221p. If 55 ◁ y, then 9551p. If 88 ◁ y, then 881 ◁ p. Hence we may assume y contains at most one 0, at most one 2, at most one 5, and at most one 8.

If y only contains at most one 0 and does not contain any of {2,5,8}, then y ∈ {𝜆,0}, and thus p ∈ {91,901}, but 91 and 901 are both composite. If y only contains at most one 0 and only one of {2,5,8}, then the sum of the digits of p is divisible by 3, p is divisible by 3, so p cannot be prime. Hence we may assume y contains at least two of {2,5,8}.

If 25 ◁ y, then 251 ◁ p. If 28 ◁ y, then 281 ◁ p. If 52 ◁ y, then 521 ◁ p. If 82 ◁ y, then 821 ◁ p. Hence we may assume y contains no 2's (since if y contains 2, then y cannot contain either 5's or 8's, which is a contradiction).

If 85 ◁ y, then 9851p. Hence we may assume y ∈ {58,580,508,058}, and thus p ∈ {9581,95801,95081,90581}, and of these numbers only 95801 is prime, but 95801 is not a minimal element since 5801 ◁ 95801.

Case 2: p ends with 3.

In this case we can write p = x3. If x contains 1, 2, 4, 5, 7, or 8, then (respectively) 13p, 23p, 43p, 53p, 73p, or 83p. Hence we may assume all digits of x are 0, 3, 6, or 9, and thus all digits of p are 0, 3, 6, or 9. But then, since the digits of p all have a common factor 3, p is divisible by 3, so p cannot be prime.

Case 3: p ends with 7.

In this case we can write p = x7. If x contains 1, 3, 4, 6, or 9, then (respectively) 17p, 37p, 47p, 67p, or 97p. Hence we may assume all digits of x are 0, 2, 5, 7, or 8.

Case 3.1: p begins with 2.

In this case we can write p = 2y7. If 2 ◁ y, then 227p. If 5 ◁ y, then 257p. If 7 ◁ y, then 277p. Hence we may assume all digits of y are 0 or 8.

If 08 ◁ y, then 2087p. If 88 ◁ y, then 887 ◁ p. Hence we may assume y ∈ {0} ∪ 8{0}.

If y ∈ {0}, then p ∈ 2{0}7. But then, since the sum of the digits of p is 9, p is divisible by 3, so p cannot be prime.

If y ∈ 8{0}, then p ∈ 28{0}7. But then p is divisible by 7, since for n ≥ 0 we have 7 × 40n1 = 280n7.

Case 3.2: p begins with 5.

In this case we can write p = 5y7. If 5 ◁ y, then 557p. If 7 ◁ y, then 577p. If 8 ◁ y, then 587p. Hence we may assume all digits of y are 0 or 2.

If 22 ◁ y, then 227 ◁ p. Hence we may assume y contains zero or one 2's.

If y contains no 2's, then p ∈ 5{0}7. But then, since the sum of the digits of p is 12, p is divisible by 3, so p cannot be prime.

If y contains exactly one 2, then we can write p = 5z2w7, where z,w ∈ {0}. If 0 ◁ z and 0 ◁ w, then 50207p. Hence we may assume either z or w is empty.

If z is empty, then p ∈ 52{0}7, and the smallest prime p ∈ 52{0}7 is 5200007.

If w is empty, then p ∈ 5{0}27, and the smallest prime p ∈ 5{0}27 is 5000000000000000000000000000027.

Case 3.3: p begins with 7.

In this case we can write p = 7y7. If 2 ◁ y, then 727p. If 5 ◁ y, then 757p. If 8 ◁ y, then 787p. Hence we may assume all digits of y are 0 or 7, and thus all digits of p are 0 or 7. But then, since the digits of p all have a common factor 7, p is divisible by 7, so p cannot be prime.

Case 3.4: p begins with 8.

In this case we can write p = 8y7. If 2 ◁ y, then 827p. If 5 ◁ y, then 857p. If 7 ◁ y, then 877p. If 8 ◁ y, then 887p. Hence we may assume y ∈ {0}, and thus p ∈ 8{0}7. But then, since the sum of the digits of p is 15, p is divisible by 3, so p cannot be prime.

Case 4: p ends with 9.

In this case we can write p = x9. If x contains 1, 2, 5, 7, or 8, then (respectively) 19p, 29p, 59p, 79p, or 89p. Hence we may assume all digits of x are 0, 3, 4, 6, or 9.

If 44 ◁ x, then 449p. Hence we may assume x contains zero or one 4's.

If x contains no 4's, then all digits of x are 0, 3, 6, or 9, and thus all digits of p are 0, 3, 6, or 9. But then, since the digits of p all have a common factor 3, p is divisible by 3, so p cannot be prime. Hence we may assume that x contains exactly one 4.

Case 4.1: p begins with 3.

In this case we can write p = 3y4z9, where all digits of y, z are 0, 3, 6, or 9. We must have 349p.

Case 4.2: p begins with 4.

In this case we can write p = 4y9, where all digits of y are 0, 3, 6, or 9. If 0 ◁ y, then 409p. If 3 ◁ y, then 43 ◁ p. If 9 ◁ y, then 499p. Hence we may assume y ∈ {6}, and thus p ∈ 4{6}9. But then p is divisible by 7, since for n ≥ 0 we have 7 × 6n7 = 46n9.

Case 4.3: p begins with 6.

In this case we can write p = 6y4z9, where all digits of y, z are 0, 3, 6, or 9. If 0 ◁ z, then 409 ◁ p. If 3 ◁ z, then 43 ◁ p. If 6 ◁ z, then 6469p. If 9 ◁ z, then 499 ◁ p. Hence we may assume z is empty.

If 3 ◁ y, then 349 ◁ p. If 9 ◁ y, then 6949p. Hence we may assume all digits of y are 0 or 6.

If 06 ◁ y, then 60649p. Hence we may assume y ∈ {6}{0}.

If 666 ◁ y, then 666649p. If 00000 ◁ y, then 60000049p. Hence we may assume y ∈ {𝜆, 0, 00, 000, 0000, 6, 60, 600, 6000, 60000, 66, 660, 6600, 66000, 660000}, and thus p ∈ {649, 6049, 60049, 600049, 6000049, 6649, 66049, 660049, 6600049, 66000049, 66649, 666049, 6660049, 66600049, 666000049}, and of these numbers only 66000049 and 66600049 are primes.

Case 4.4: p begins with 9.

In this case we can write p = 9y4z9, where all digits of y, z are 0, 3, 6, or 9. If 0 ◁ y, then 9049p. If 3 ◁ y, then 349 ◁ p. If 6 ◁ y, then 9649p. If 9 ◁ y, then 9949p. Hence we may assume y is empty.

If 0 ◁ z, then 409 ◁ p. If 3 ◁ z, then 43 ◁ p. If 9 ◁ z, then 499 ◁ p. Hence we may assume z ∈ {6}, and thus p ∈ 94{6}9, and the smallest prime p ∈ 94{6}9 is 946669.