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)
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 set of such minimal elements must be a finite set, e.g. in decimal (base b = 10), this set has exactly 77 elements: {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}.
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.
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 primes in the set of the Athena problem in base b" and "length of the largest prime in the set of the Athena problem 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 y ∈ Y 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}z ∪ x{Y \ y}y{Y \ y}z.
- If y1 ∈ Y and y2 ∈ Y and y1 ≠ y2 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 y1 ∈ Y and y2 ∈ Y and y1 ≠ y2 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}z ∪ x{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}z ∪ xy2{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 set of the minimal elements 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:
- M = ∅
- while (L ≠ ∅) do
- choose x, a shortest string in L
- M := M ∪ {x}
- L := L − sup({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, 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://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://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(b)×bn+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://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: https://harvey563.tripod.com/wills.txt, http://www.noprimeleftbehind.net/Williams-primes-MM.htm, http://www.bitman.name/math/table/484; or for prime bases b: https://oeis.org/A122396), (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://oeis.org/A305531; or for prime bases b: https://oeis.org/A087139), bn+(b−1) (n ≥ 1) (references of this form: http://www.bitman.name/math/table/795, 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://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 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 3{8}: Can be written as 4×9n−1 and can be factored as (2×3n−1) × (2×3n+1)
- 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 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 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 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 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
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).
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 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 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 prime (the largest of which has 2 digits (it is 11, and its value is 3 in decimal)): {11}
Base 3: 3 primes (the largest of which has 3 digits (it is 111, and its value is 13 in decimal)): {12, 21, 111}
Base 4: 5 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 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 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 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 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 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 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 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 problem base 11
Base 12: 106 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 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 problem base 13
Base 14: 650 primes, the largest of which has 19699 digits (it is 4D19698, and its algebraic form is 5×1419698−1), see Data of Athena problem base 14
Base 15: 1284 primes, the largest of which has 157 digits (it is 715597, and its algebraic form is (15157+59)/2), see Data of Athena problem base 15
Base 16: 2347 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 problem base 16
Base 17: 10415 known 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 Athena problem base 17
Base 18: 549 primes, the largest of which has 6271 digits (it is C06268C5, and its algebraic form is 12×186270+221), see Data of Athena problem base 18
Base 19: 31417 known 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 Athena problem base 19
Base 20: 3314 primes, the largest of which has 6271 digits (it is G06269D, and its algebraic form is 16×206270+13), see Data of Athena problem base 20
Base 21: 13386 known 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 Athena problem base 21
Base 22: 8003 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 problem base 22
Base 23: 65178 known 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 Athena problem base 23 and Data of unsolved families for base 23
Base 24: 3409 primes, the largest of which has 8134 digits (it is N00N8129LN, and its algebraic form is 13249×248131−49), see Data of Athena problem base 24
Base 25: 133639 known 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 Athena problem base 25 and Data of unsolved families for base 25
Base 26: 25256 known 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 Athena problem base 26
Base 27: 102852 known 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 Athena problem base 27 and Data of unsolved families for base 27
Base 28: 25528 known 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 Athena problem base 28
Base 29: 355242 known 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 Athena problem base 29 and Data of unsolved families for base 29
Base 30: 2619 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 problem base 30
Base 31: 569323 known 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 Athena problem base 31 and Data of unsolved families for base 31
Base 32: 168882 known 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 Athena problem base 32 and Data of unsolved families for base 32
Base 33: 280012 known 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 Athena problem base 33 and Data of unsolved families for base 33
Base 34: 184785 known 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 Athena problem base 34 and Data of unsolved families for base 34
Base 35: 720002 known 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 Athena problem base 35 and Data of unsolved families for base 35
Base 36: 35286 known 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 Athena problem base 36
| b |
number of minimal primes (or probable prime, which is a minimal prime assuming its primality) base b |
base-b form of the top 10 known minimal primes (or probable prime, which is a minimal prime assuming its primality) base b (write "dn" if there are 5 or more (n) consecutive same digits d) |
length of the top 10 known minimal primes (or probable prime, which is a minimal prime assuming its primality) base b |
length of the top 10 known minimal primes (or probable prime, which is a minimal prime assuming its primality) base b in decimal |
algebraic ((a×bn+c)/gcd(a+c,b−1)) form of the top 10 known minimal primes (or probable prime, which is a minimal prime assuming its primality) base b |
factordb entry of the top 10 known minimal primes (or probable prime, which is a minimal prime assuming its primality) |
the top 10 known minimal primes (or probable prime, which is a minimal prime assuming its primality) written in base b (use lower case letters instead of upper case letters) |
the top 10 known minimal primes (or probable prime, which is a minimal prime assuming its primality) written in decimal |
factorization of the first 200 numbers in corresponding family (n is the number of digits in the "{}", start with the smallest n making the number > b (if n = 0 already makes the number > b, then start with n = 0) of the top 10 known minimal primes) |
number of left families in base b (all of these left families are linear families) |
searching limit of length for the left families in base b (if there are different searching limits for the left families 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 |
http://factordb.com/index.php?showid=3 |
– |
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 |
http://factordb.com/index.php?showid=13 http://factordb.com/index.php?showid=7 http://factordb.com/index.php?showid=5 |
– – – |
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 |
http://factordb.com/index.php?showid=41 http://factordb.com/index.php?showid=13 http://factordb.com/index.php?showid=11 http://factordb.com/index.php?showid=7 http://factordb.com/index.php?showid=5 |
– – – – – |
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 |
http://factordb.com/index.php?showid=1100000000034686071 http://factordb.com/index.php?showid=9391 http://factordb.com/index.php?showid=3121 http://factordb.com/index.php?showid=2341 http://factordb.com/index.php?showid=2251 http://factordb.com/index.php?showid=1951 http://factordb.com/index.php?showid=1249 http://factordb.com/index.php?showid=653 http://factordb.com/index.php?showid=401 http://factordb.com/index.php?showid=109 |
http://factordb.com/index.php?query=5%5E%28n%2B2%29%2B8&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show – – – – – – – – – |
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 |
http://factordb.com/index.php?showid=5209 http://factordb.com/index.php?showid=1033 http://factordb.com/index.php?showid=1009 http://factordb.com/index.php?showid=31 http://factordb.com/index.php?showid=29 http://factordb.com/index.php?showid=23 http://factordb.com/index.php?showid=19 http://factordb.com/index.php?showid=17 http://factordb.com/index.php?showid=13 http://factordb.com/index.php?showid=11 |
– – – – – – – – – – |
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 |
http://factordb.com/index.php?showid=116315256993601 http://factordb.com/index.php?showid=207532837 http://factordb.com/index.php?showid=2882377 http://factordb.com/index.php?showid=134471 http://factordb.com/index.php?showid=91631 http://factordb.com/index.php?showid=62819 http://factordb.com/index.php?showid=50459 http://factordb.com/index.php?showid=28813 http://factordb.com/index.php?showid=16871 http://factordb.com/index.php?showid=9643 |
http://factordb.com/index.php?query=%287%5E%28n%2B1%29-5%29%2F2&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=367%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%287%5E%28n%2B2%29-47%29%2F2&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show – – – – – – – |
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 |
http://factordb.com/index.php?showid=1100000000416605822 http://factordb.com/index.php?showid=25131694349141 http://factordb.com/index.php?showid=549755813881 http://factordb.com/index.php?showid=8589035809 http://factordb.com/index.php?showid=127027489 http://factordb.com/index.php?showid=76695841 http://factordb.com/index.php?showid=11983381 http://factordb.com/index.php?showid=1495381 http://factordb.com/index.php?showid=1474901 http://factordb.com/index.php?showid=1198399 |
http://factordb.com/index.php?query=%2848%5E%28n%2B1%29%2B17%29%2F7&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2858%5E%28n%2B2%29-173%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=8%5E%28n%2B1%29-7&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28286698%5E%28n%2B1%29-25%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28538%5E%28n%2B1%29-25%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2848%5E%28n%2B1%29-25%29%2F7&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2858%5E%28n%2B3%29-2413%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show – – http://factordb.com/index.php?query=%2848%5E%28n%2B2%29%2B185%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000002376318423 http://factordb.com/index.php?showid=1100000002495467486 http://factordb.com/index.php?showid=1100000002359003642 http://factordb.com/index.php?showid=1100000001554010824 http://factordb.com/index.php?showid=1100000002512830927 http://factordb.com/index.php?showid=1100000000032261811 http://factordb.com/index.php?showid=1100000002495736583 http://factordb.com/index.php?showid=1100000003446800389 http://factordb.com/index.php?showid=1055192051985121 http://factordb.com/index.php?showid=22876792455373 |
http://factordb.com/index.php?query=39%5E%28n%2B2%29%2B10&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28239%5E%28n%2B2%29-511%29%2F8&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28319%5E%28n%2B1%29-19%29%2F4&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%284099%5En-1%29%2F8&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=9%5E%28n%2B2%29%2B52&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=39%5E%28n%2B2%29%2B46&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=9%5E%28n%2B3%29-454&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%285279%5E%28n%2B2%29-511%29%2F8&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28419%5E%28n%2B2%29%2B359%29%2F8&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=9%5E%28n%2B3%29%2B412&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000000204142046 http://factordb.com/index.php?showid=555555555551 http://factordb.com/index.php?showid=80555551 http://factordb.com/index.php?showid=66600049 http://factordb.com/index.php?showid=66000049 http://factordb.com/index.php?showid=60000049 http://factordb.com/index.php?showid=22000001 http://factordb.com/index.php?showid=5200007 http://factordb.com/index.php?showid=946669 http://factordb.com/index.php?showid=666649 |
http://factordb.com/index.php?query=510%5E%28n%2B2%29%2B27&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28510%5E%28n%2B1%29-41%29%2F9&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2872510%5E%28n%2B1%29-41%29%2F9&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show – – http://factordb.com/index.php?query=610%5E%28n%2B2%29%2B49&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2210%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show – – – |
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 |
http://factordb.com/index.php?showid=1100000003573679860 http://factordb.com/index.php?showid=1100000002361376522 http://factordb.com/index.php?showid=1100000002505568840 http://factordb.com/index.php?showid=1100000003576826487 http://factordb.com/index.php?showid=1100000003576826769 http://factordb.com/index.php?showid=1100000002518512744 http://factordb.com/index.php?showid=1100000002391585327 http://factordb.com/index.php?showid=1100000002632393378 http://factordb.com/index.php?showid=1100000002391531300 http://factordb.com/index.php?showid=1100000003576826781 |
http://factordb.com/index.php?query=%285711%5En-7%29%2F10&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2860711%5En-7%29%2F10&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28711%5E%28n%2B2%29-367%29%2F10&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=11%5E%28n%2B2%29-58&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281711%5E%28n%2B2%29-111%29%2F2&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2855711%5En-7%29%2F10&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2811%5E%28n%2B2%29-57%29%2F2&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=511%5E%28n%2B2%29%2B62&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=11%5E%28n%2B2%29%2B56&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2817811%5En-3%29%2F5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000002375054575 http://factordb.com/index.php?showid=1100000002354113100 http://factordb.com/index.php?showid=5159780039 http://factordb.com/index.php?showid=388177921 http://factordb.com/index.php?showid=32847239 http://factordb.com/index.php?showid=32555521 http://factordb.com/index.php?showid=2985817 http://factordb.com/index.php?showid=2488397 http://factordb.com/index.php?showid=1097113 http://factordb.com/index.php?showid=248821 |
http://factordb.com/index.php?query=412%5E%28n%2B2%29%2B91&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1112%5E%28n%2B2%29%2B119&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=12%5E%28n%2B3%29-313&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=13012%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show – – – – – – |
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 |
http://factordb.com/index.php?showid=1100000005489162806 http://factordb.com/index.php?showid=1100000003943359311 http://factordb.com/index.php?showid=1100000000490878060 http://factordb.com/index.php?showid=1100000003590647776 http://factordb.com/index.php?showid=1100000003590493750 http://factordb.com/index.php?showid=1100000002616382906 http://factordb.com/index.php?showid=1100000000765961441 http://factordb.com/index.php?showid=1100000003590430825 http://factordb.com/index.php?showid=1100000002632396910 http://factordb.com/index.php?showid=1100000000765961452 |
http://factordb.com/index.php?query=%284113%5E%28n%2B1%29%2B27%29%2F4&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2811313%5En-5%29%2F12&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=813%5E%28n%2B3%29%2B183&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2814913%5E%28n%2B1%29%2B79%29%2F12&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=13%5E%28n%2B2%29-50&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1113%5E%28n%2B3%29%2B2012&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=4813%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=26713%5E%28n%2B2%29%2B20&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=9313%5E%28n%2B1%29%2B2&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=12013%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000000884560233 http://factordb.com/index.php?showid=1100000001540144903 http://factordb.com/index.php?showid=1100000003575856650 http://factordb.com/index.php?showid=1100000002321014379 http://factordb.com/index.php?showid=1100000000823937973 http://factordb.com/index.php?showid=1100000002631073246 http://factordb.com/index.php?showid=1100000002384401372 http://factordb.com/index.php?showid=1100000002631077787 http://factordb.com/index.php?showid=1100000000840126683 http://factordb.com/index.php?showid=1100000002321038522 |
http://factordb.com/index.php?query=514%5En-1&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=4714%5En-1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=914%5E%28n%2B2%29-79&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28814%5E%28n%2B1%29%2B31%29%2F13&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=414%5E%28n%2B2%29%2B65&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2811614%5E%28n%2B1%29-129%29%2F13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282114%5E%28n%2B1%29%2B31%29%2F13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%288914%5E%28n%2B2%29-1649%29%2F13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28414%5E%28n%2B2%29-667%29%2F13&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281014%5E%28n%2B1%29-101%29%2F13&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000002454891840 http://factordb.com/index.php?showid=1100000002454900849 http://factordb.com/index.php?showid=1100000000823937997 http://factordb.com/index.php?showid=1100000003588407143 http://factordb.com/index.php?showid=1100000003588407386 http://factordb.com/index.php?showid=1100000002632398579 http://factordb.com/index.php?showid=1100000002321033312 http://factordb.com/index.php?showid=1100000002391199877 http://factordb.com/index.php?showid=1100000003588407806 http://factordb.com/index.php?showid=1100000000851967288 |
http://factordb.com/index.php?query=%2815%5E%28n%2B2%29%2B59%29%2F2&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=15%5E%28n%2B3%29-2558&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%286615%5E%28n%2B2%29-619%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2815%5E%28n%2B2%29%2B163%29%2F2&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2815%5E%28n%2B3%29%2B2413%29%2F2&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=515%5E%28n%2B2%29%2B22&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2820715%5En-11%29%2F14&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=139815%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=158015%5E%28n%2B1%29%2B11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=17215%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000003851731988 http://factordb.com/index.php?showid=1100000003615909841 http://factordb.com/index.php?showid=1100000002383583629 http://factordb.com/index.php?showid=1100000003589278511 http://factordb.com/index.php?showid=1100000000993764322 http://factordb.com/index.php?showid=1100000000633424191 http://factordb.com/index.php?showid=1100000003588368750 http://factordb.com/index.php?showid=1100000003588386735 http://factordb.com/index.php?showid=1100000000633744824 http://factordb.com/index.php?showid=1100000003588387610 |
http://factordb.com/index.php?query=%2816%5E%28n%2B2%29%2B619%29%2F5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28416%5E%28n%2B2%29%2B2291%29%2F15&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2820616%5En-11%29%2F15&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28313116%5En-11%29%2F15&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2845916%5E%28n%2B1%29%2B1%29%2F5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=916%5E%28n%2B2%29%2B145&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=76916%5E%28n%2B2%29-81&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=216%5E%28n%2B3%29%2B801&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2823316%5E%28n%2B1%29%2B97%29%2F15&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=25116%5E%28n%2B2%29-187&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000008610514108 http://factordb.com/index.php?showid=1100000008610515753 http://factordb.com/index.php?showid=1100000000765961429 http://factordb.com/index.php?showid=1100000000765961411 http://factordb.com/index.php?showid=1100000008610516879 http://factordb.com/index.php?showid=1100000000808118219 http://factordb.com/index.php?showid=1100000003993647842 http://factordb.com/index.php?showid=1100000000765961389 http://factordb.com/index.php?showid=1100000003883765450 http://factordb.com/index.php?showid=1100000003848346668 |
http://factordb.com/index.php?query=%28254317%5En-15%29%2F16&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1117%5E%28n%2B2%29%2B232&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=26217%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=16017%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=8617%5E%28n%2B1%29%2B13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%287317%5En-9%29%2F16&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281117%5E%28n%2B2%29-2411%29%2F16&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=9217%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28396317%5En-11%29%2F16&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%286038117%5En-13%29%2F16&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000003590442437 http://factordb.com/index.php?showid=1100000003590430490 http://factordb.com/index.php?showid=1100000002355574745 http://factordb.com/index.php?showid=1100000002632837015 http://factordb.com/index.php?showid=1100000002321052894 http://factordb.com/index.php?showid=1100000000819230161 http://factordb.com/index.php?showid=1100000002631240657 http://factordb.com/index.php?showid=1100000003590430474 http://factordb.com/index.php?showid=1100000003590430470 http://factordb.com/index.php?showid=1100000003590430465 |
http://factordb.com/index.php?query=1218%5E%28n%2B2%29%2B221&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=18%5E%28n%2B2%29-37&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=818%5E%28n%2B1%29%2B11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1218%5E%28n%2B2%29%2B275&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2830218%5En-13%29%2F17&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=30418%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2821918%5E%28n%2B1%29-185%29%2F17&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281118%5E%28n%2B2%29-1541%29%2F17&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28389118%5E%28n%2B1%29-185%29%2F17&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28718%5E%28n%2B2%29%2B2747%29%2F17&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000001582289581 http://factordb.com/index.php?showid=1100000008755307222 http://factordb.com/index.php?showid=1100000005513825027 http://factordb.com/index.php?showid=1100000008755311453 http://factordb.com/index.php?showid=1100000000808118212 http://factordb.com/index.php?showid=1100000004163040839 http://factordb.com/index.php?showid=1100000003998413751 http://factordb.com/index.php?showid=1100000000808118332 http://factordb.com/index.php?showid=1100000003949188041 http://factordb.com/index.php?showid=1100000003949189035 |
http://factordb.com/index.php?query=63419%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=419%5E%28n%2B3%29%2B6351&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%285919%5En-5%29%2F18&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2810330119%5En-17%29%2F18&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2890419%5En-1%29%2F3&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281719%5E%28n%2B1%29-215%29%2F18&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=25619%5E%28n%2B1%29%2B9&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=9119%5E%28n%2B1%29%2B6&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2819%5E%28n%2B1%29%2B44%29%2F9&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2819%5E%28n%2B2%29%2B926%29%2F9&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000003590539457 http://factordb.com/index.php?showid=1100000002325393915 http://factordb.com/index.php?showid=1100000003590502412 http://factordb.com/index.php?showid=1100000003590502490 http://factordb.com/index.php?showid=1100000001559454258 http://factordb.com/index.php?showid=1100000003590502516 http://factordb.com/index.php?showid=1100000003590502531 http://factordb.com/index.php?showid=1100000000840126753 http://factordb.com/index.php?showid=1100000002633348702 http://factordb.com/index.php?showid=1100000003590502563 |
http://factordb.com/index.php?query=1620%5E%28n%2B1%29%2B13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2824120%5En-13%29%2F19&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=520%5E%28n%2B2%29%2B219&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=20%5E%28n%2B3%29-7881&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=39320%5En-1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281420%5E%28n%2B2%29-907%29%2F19&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%286720%5E%28n%2B1%29-143%29%2F19&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281620%5E%28n%2B2%29-2809%29%2F19&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=29220%5E%28n%2B1%29%2B7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=420%5E%28n%2B4%29%2B32091&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000008700600990 http://factordb.com/index.php?showid=1100000008700596669 http://factordb.com/index.php?showid=1100000008700593358 http://factordb.com/index.php?showid=1100000008700586183 http://factordb.com/index.php?showid=1100000000808118331 http://factordb.com/index.php?showid=1100000003996110311 http://factordb.com/index.php?showid=1100000003996110479 http://factordb.com/index.php?showid=1100000003996110718 http://factordb.com/index.php?showid=1100000003996110944 http://factordb.com/index.php?showid=1100000003996111130 |
http://factordb.com/index.php?query=%284721%5E%28n%2B2%29%2B953%29%2F20&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2830921%5E%28n%2B1%29%2B71%29%2F20&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2828821%5E%28n%2B1%29-13%29%2F5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28721%5E%28n%2B2%29%2B4733%29%2F20&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=421%5E%28n%2B2%29%2B205&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=24021%5E%28n%2B2%29%2B299&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2835321%5En-13%29%2F20&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2823321%5E%28n%2B1%29-53%29%2F20&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=19821%5E%28n%2B3%29%2B4175&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2821%5E%28n%2B3%29%2B18455%29%2F4&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000003594696838 http://factordb.com/index.php?showid=1100000003591359839 http://factordb.com/index.php?showid=1100000003591360774 http://factordb.com/index.php?showid=1100000003591361817 http://factordb.com/index.php?showid=1100000003591362567 http://factordb.com/index.php?showid=1100000000632724415 http://factordb.com/index.php?showid=1100000000632724334 http://factordb.com/index.php?showid=1100000000632703239 http://factordb.com/index.php?showid=1100000003591364730 http://factordb.com/index.php?showid=1100000003591365331 |
http://factordb.com/index.php?query=%2825122%5E%28n%2B1%29-335%29%2F21&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2822%5E%28n%2B2%29-289%29%2F3&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=22%5E%28n%2B3%29-653&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2822%5E%28n%2B2%29%2B857%29%2F3&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1922%5E%28n%2B4%29%2B199779&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2022%5E%28n%2B3%29%2B7041&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28622%5E%28n%2B2%29-1259%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=31422%5E%28n%2B1%29%2B21&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=22%5E%28n%2B2%29-129&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2122%5E%28n%2B3%29%2B5459&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000004691540361 http://factordb.com/index.php?showid=1100000004691546739 http://factordb.com/index.php?showid=1100000004691548070 http://factordb.com/index.php?showid=1100000004691548569 http://factordb.com/index.php?showid=1100000004691549462 http://factordb.com/index.php?showid=1100000004691549803 http://factordb.com/index.php?showid=1100000004691551005 http://factordb.com/index.php?showid=1100000004691556967 http://factordb.com/index.php?showid=1100000004691557254 http://factordb.com/index.php?showid=1100000004691557548 |
http://factordb.com/index.php?query=1123%5E%28n%2B2%29%2B356&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282123%5E%28n%2B1%29-197%29%2F22&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2823923%5E%28n%2B1%29-349%29%2F22&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=223%5E%28n%2B2%29%2B215&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281923%5E%28n%2B2%29-1867%29%2F22&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=30623%5E%28n%2B1%29%2B11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2812523%5E%28n%2B1%29-213%29%2F22&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2812041323%5En-7%29%2F22&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=25623%5E%28n%2B1%29%2B5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2832723%5En-19%29%2F22&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000003593391606 http://factordb.com/index.php?showid=1100000003593275880 http://factordb.com/index.php?showid=1100000003593269654 http://factordb.com/index.php?showid=1100000003593269876 http://factordb.com/index.php?showid=1100000003593270089 http://factordb.com/index.php?showid=1100000002633359842 http://factordb.com/index.php?showid=1100000002355610241 http://factordb.com/index.php?showid=1100000002326181235 http://factordb.com/index.php?showid=1100000003593270725 http://factordb.com/index.php?showid=1100000002633360037 |
http://factordb.com/index.php?query=1324924%5E%28n%2B2%29-49&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=20124%5En-1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1024%5E%28n%2B3%29%2B5053&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281324%5E%28n%2B2%29%2B4403%29%2F23&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=24%5E%28n%2B3%29-1201&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=27624%5E%28n%2B1%29%2B11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=224%5E%28n%2B1%29%2B7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2828324%5En-7%29%2F23&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1324%5E%28n%2B3%29%2B12013&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1824%5E%28n%2B2%29%2B437&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000000808118215 http://factordb.com/index.php?showid=1100000003983674902 http://factordb.com/index.php?showid=1100000004909706420 http://factordb.com/index.php?showid=1100000004909733266 http://factordb.com/index.php?showid=1100000004909750102 http://factordb.com/index.php?showid=1100000004909770736 http://factordb.com/index.php?showid=1100000004586986394 http://factordb.com/index.php?showid=1100000000808118270 http://factordb.com/index.php?showid=1100000004586986664 http://factordb.com/index.php?showid=1100000004586986798 |
http://factordb.com/index.php?query=%28725%5E%28n%2B3%29%2B10613%29%2F12&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2767625%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=58625%5E%28n%2B3%29%2B3717&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=33225%5E%28n%2B3%29%2B12357&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1525%5E%28n%2B2%29%2B446&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1187625%5E%28n%2B2%29%2B357&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28525%5E%28n%2B2%29-2267%29%2F6&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2225%5E%28n%2B2%29-113&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1298825%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=725%5E%28n%2B4%29%2B207526&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000008573990023 http://factordb.com/index.php?showid=1100000003968169875 http://factordb.com/index.php?showid=1100000003968156595 http://factordb.com/index.php?showid=1100000003892628745 http://factordb.com/index.php?showid=1100000003892628658 http://factordb.com/index.php?showid=1100000003892628605 http://factordb.com/index.php?showid=1100000003850151202 http://factordb.com/index.php?showid=1100000003850155316 http://factordb.com/index.php?showid=1100000000758011195 http://factordb.com/index.php?showid=1100000002634136508 |
http://factordb.com/index.php?query=%28534726%5E%28n%2B1%29-297%29%2F25&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2226%5E%28n%2B3%29%2B1649&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1926%5E%28n%2B3%29%2B13843&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%283426%5E%28n%2B1%29-79%29%2F5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=55926%5E%28n%2B1%29%2B7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28726%5E%28n%2B2%29%2B11393%29%2F25&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2826%5E%28n%2B2%29%2B179%29%2F5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%283256926%5E%28n%2B1%29%2B21%29%2F5&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282226%5E%28n%2B1%29%2B53%29%2F25&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2026%5E%28n%2B2%29%2B473&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000000808118233 http://factordb.com/index.php?showid=1100000004681348398 http://factordb.com/index.php?showid=1100000004374140861 http://factordb.com/index.php?showid=1100000004374138999 http://factordb.com/index.php?showid=1100000000819229859 http://factordb.com/index.php?showid=1100000004102754118 http://factordb.com/index.php?showid=1100000004102755880 http://factordb.com/index.php?showid=1100000004102758254 http://factordb.com/index.php?showid=1100000004102875088 http://factordb.com/index.php?showid=1100000004103372866 |
http://factordb.com/index.php?query=%2823448327%5E%28n%2B1%29-145%29%2F26&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1230827%5E%28n%2B1%29%2B23&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2845782927%5E%28n%2B1%29-385%29%2F26&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=64027%5E%28n%2B1%29%2B17&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2829327%5E%28n%2B2%29-1736%29%2F13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=69227%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2869127%5E%28n%2B3%29-95045%29%2F26&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1927%5E%28n%2B2%29%2B688&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=13627%5E%28n%2B3%29%2B13129&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1722227%5E%28n%2B1%29%2B23&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000000808118231 http://factordb.com/index.php?showid=1100000003880455200 http://factordb.com/index.php?showid=1100000003879667576 http://factordb.com/index.php?showid=1100000003850151420 http://factordb.com/index.php?showid=1100000000840839934 http://factordb.com/index.php?showid=1100000003850161974 http://factordb.com/index.php?showid=1100000003850161973 http://factordb.com/index.php?showid=1100000000840839947 http://factordb.com/index.php?showid=1100000003850161972 http://factordb.com/index.php?showid=1100000003850161965 |
http://factordb.com/index.php?query=%28609228%5E%28n%2B1%29-143%29%2F9&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28443828%5E%28n%2B1%29%2B125%29%2F27&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2820928%5E%28n%2B2%29%2B3967%29%2F9&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1328%5E%28n%2B3%29%2B5697&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2824228%5E%28n%2B2%29-4679%29%2F9&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28528%5E%28n%2B2%29%2B2803%29%2F27&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1628%5E%28n%2B2%29%2B303&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281028%5E%28n%2B2%29-2899%29%2F27&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281728%5E%28n%2B1%29-11%29%2F3&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28528%5E%28n%2B3%29%2B426163%29%2F27&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000008253882372 http://factordb.com/index.php?showid=1100000008253893542 http://factordb.com/index.php?showid=1100000008253899083 http://factordb.com/index.php?showid=1100000008253909183 http://factordb.com/index.php?showid=1100000008253921388 http://factordb.com/index.php?showid=1100000008253925955 http://factordb.com/index.php?showid=1100000008253931446 http://factordb.com/index.php?showid=1100000000808118236 http://factordb.com/index.php?showid=1100000008253934219 http://factordb.com/index.php?showid=1100000008253936120 |
http://factordb.com/index.php?query=23529%5E%28n%2B1%29%2B4&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2839722729%5En-19%29%2F28&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2858885929%5En-19%29%2F28&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=958329%5E%28n%2B2%29%2B736&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2823529%5E%28n%2B1%29%2B129%29%2F28&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2129%5E%28n%2B4%29%2B129664&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1429%5E%28n%2B3%29%2B17875&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28444129%5E%28n%2B1%29-24%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=57829%5E%28n%2B1%29%2B7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281129%5E%28n%2B3%29-245655%29%2F28&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000000800812865 http://factordb.com/index.php?showid=1100000003593967511 http://factordb.com/index.php?showid=1100000002327649423 http://factordb.com/index.php?showid=1100000000785448736 http://factordb.com/index.php?showid=1100000003593407988 http://factordb.com/index.php?showid=1100000003593408295 http://factordb.com/index.php?showid=1100000002327651073 http://factordb.com/index.php?showid=1100000002356282476 http://factordb.com/index.php?showid=1100000003593409109 http://factordb.com/index.php?showid=1100000003593409165 |
http://factordb.com/index.php?query=2530%5En-1&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1830%5E%28n%2B1%29%2B13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28530%5E%28n%2B1%29%2B401%29%2F29&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1230%5E%28n%2B1%29%2B1&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2230%5E%28n%2B3%29%2B26047&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282230%5E%28n%2B2%29%2B3139%29%2F29&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2831330%5En-23%29%2F29&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=530%5E%28n%2B1%29%2B11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281930%5E%28n%2B2%29%2B6071%29%2F29&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281930%5E%28n%2B3%29%2B188771%29%2F29&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000007050395732 http://factordb.com/index.php?showid=1100000007050397309 http://factordb.com/index.php?showid=1100000007050398940 http://factordb.com/index.php?showid=1100000007050400178 http://factordb.com/index.php?showid=1100000006965878559 http://factordb.com/index.php?showid=1100000006965875678 http://factordb.com/index.php?showid=1100000006965873668 http://factordb.com/index.php?showid=1100000006965870538 http://factordb.com/index.php?showid=1100000006965868103 http://factordb.com/index.php?showid=1100000006965865343 |
http://factordb.com/index.php?query=%28499731%5En-1%29%2F2&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1131%5E%28n%2B4%29%2B322688&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281769931%5En-29%29%2F30&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1826831%5E%28n%2B3%29%2B22839&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281331%5E%28n%2B2%29%2B12407%29%2F30&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=934831%5E%28n%2B1%29%2B13&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281931%5E%28n%2B1%29-199%29%2F30&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2331%5E%28n%2B3%29%2B2970&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=40020531%5E%28n%2B2%29%2B912&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=31%5E%28n%2B3%29-17574&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000005514892191 http://factordb.com/index.php?showid=1100000005514897129 http://factordb.com/index.php?showid=1100000005514901700 http://factordb.com/index.php?showid=1100000005514915338 http://factordb.com/index.php?showid=1100000005514918574 http://factordb.com/index.php?showid=1100000005514922523 http://factordb.com/index.php?showid=1100000004591654373 http://factordb.com/index.php?showid=1100000004591654467 http://factordb.com/index.php?showid=1100000004591654632 http://factordb.com/index.php?showid=1100000004591654952 |
http://factordb.com/index.php?query=32%5E%28n%2B2%29-829&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28632%5E%28n%2B2%29%2B4241%29%2F31&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28832%5E%28n%2B1%29%2B271%29%2F31&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282632%5E%28n%2B5%29-390071011%29%2F31&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28832%5E%28n%2B1%29-163%29%2F31&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2861132%5E%28n%2B1%29-53%29%2F31&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281432%5E%28n%2B2%29%2B4171%29%2F31&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1132%5E%28n%2B2%29%2B395&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2851632%5E%28n%2B1%29-175%29%2F31&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2864332%5En-23%29%2F31&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000005652348775 http://factordb.com/index.php?showid=1100000005652362811 http://factordb.com/index.php?showid=1100000005652375073 http://factordb.com/index.php?showid=1100000005652389776 http://factordb.com/index.php?showid=1100000005652430746 http://factordb.com/index.php?showid=1100000005652446200 http://factordb.com/index.php?showid=1100000005652461592 http://factordb.com/index.php?showid=1100000004614764298 http://factordb.com/index.php?showid=1100000004614770536 http://factordb.com/index.php?showid=1100000004614784274 |
http://factordb.com/index.php?query=%2844133%5E%28n%2B2%29-3833%29%2F32&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=58033%5E%28n%2B1%29%2B19&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=933%5E%28n%2B1%29%2B26&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=31233%5E%28n%2B1%29%2B23&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28733%5E%28n%2B4%29-4743239%29%2F32&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2864333%5E%28n%2B2%29%2B3709%29%2F32&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281333%5E%28n%2B3%29-121453%29%2F32&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281662333%5E%28n%2B2%29-8095%29%2F16&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281933%5E%28n%2B3%29-600883%29%2F32&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=44433%5E%28n%2B1%29%2B19&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000004702891268 http://factordb.com/index.php?showid=1100000004702894713 http://factordb.com/index.php?showid=1100000004702900996 http://factordb.com/index.php?showid=1100000004702910376 http://factordb.com/index.php?showid=1100000004702913746 http://factordb.com/index.php?showid=1100000004702918600 http://factordb.com/index.php?showid=1100000004399656529 http://factordb.com/index.php?showid=1100000004399657696 http://factordb.com/index.php?showid=1100000004399658651 http://factordb.com/index.php?showid=1100000004399659716 |
http://factordb.com/index.php?query=%2820924634%5E%28n%2B1%29-81%29%2F11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=934%5E%28n%2B2%29%2B529&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=80434%5E%28n%2B2%29%2B713&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28534%5E%28n%2B4%29%2B700233%29%2F11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282534%5E%28n%2B4%29-28062367%29%2F33&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28234%5E%28n%2B2%29%2B1043%29%2F11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28128867634%5E%28n%2B1%29-455%29%2F33&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282934%5E%28n%2B2%29-12833%29%2F33&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28434%5E%28n%2B1%29%2B227%29%2F33&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%283082634%5E%28n%2B1%29-59%29%2F11&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000008248342445 http://factordb.com/index.php?showid=1100000008248353306 http://factordb.com/index.php?showid=1100000008248375642 http://factordb.com/index.php?showid=1100000008248397018 http://factordb.com/index.php?showid=1100000008248412468 http://factordb.com/index.php?showid=1100000008248418540 http://factordb.com/index.php?showid=1100000008248423670 http://factordb.com/index.php?showid=1100000008192119974 http://factordb.com/index.php?showid=1100000008192126630 http://factordb.com/index.php?showid=1100000008192129294 |
http://factordb.com/index.php?query=%282739335%5E%28n%2B1%29-499%29%2F34&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=3135%5E%28n%2B3%29%2B17398&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%282335%5E%28n%2B3%29-144013%29%2F34&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=40435%5E%28n%2B1%29%2B23&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1935%5E%28n%2B3%29%2B19442&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28489335%5En-31%29%2F34&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%28935%5E%28n%2B2%29%2B12877%29%2F34&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2872535%5E%28n%2B2%29%2B16649%29%2F34&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281335%5E%28n%2B1%29-166%29%2F17&use=n&n=1&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=535%5E%28n%2B2%29%2B202&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
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 |
http://factordb.com/index.php?showid=1100000002394962083 http://factordb.com/index.php?showid=1100000004020085177 http://factordb.com/index.php?showid=1100000003896952461 http://factordb.com/index.php?showid=1100000003807362491 http://factordb.com/index.php?showid=1100000003807362489 http://factordb.com/index.php?showid=1100000003807362488 http://factordb.com/index.php?showid=1100000003807362487 http://factordb.com/index.php?showid=1100000003807362486 http://factordb.com/index.php?showid=1100000003807362485 http://factordb.com/index.php?showid=1100000000840634476 |
http://factordb.com/index.php?query=%28536%5E%28n%2B2%29%2B821%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2836%5E%28n%2B2%29%2B305&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%285336%5E%28n%2B1%29%2B101%29%2F7&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%281936%5E%28n%2B2%29%2B2501%29%2F35&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=113736%5E%28n%2B1%29%2B19&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=52836%5E%28n%2B1%29%2B31&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=1636%5E%28n%2B2%29-1163&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%283654936%5E%28n%2B1%29-289%29%2F35&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=%2897936%5E%28n%2B1%29-629%29%2F35&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show http://factordb.com/index.php?query=2536%5E%28n%2B2%29-901&use=n&n=0&VP=on&VC=on&EV=on&OD=on&PR=on&FF=on&PRP=on&CF=on&U=on&C=on&perpage=200&format=1&sent=Show |
4 |
200000 |
|
The fully proof of Athena problem in decimal (base b = 10)
[edit | edit source]
Bold for the minimal elements, x ◁ y 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) 11 ◁ p, 31 ◁ p, 41 ◁ p, 61 ◁ p, or 71 ◁ p. 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 251 ◁ p. If 8 ◁ y, then 281 ◁ p. If 9 ◁ y, then 29 ◁ p. Hence we may assume all digits of y are 0 or 2.
If 22 ◁ y, then 2221 ◁ p. 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 20201 ◁ p. 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 521 ◁ p. If 9 ◁ y, then 59 ◁ p. Hence we may assume all digits of y are 0, 5, or 8.
If 05 ◁ y, then 5051 ◁ p. If 08 ◁ y, then 5081 ◁ p. If 50 ◁ y, then 5501 ◁ p. If 58 ◁ y, then 5581 ◁ p. If 80 ◁ y, then 5801 ◁ p. If 85 ◁ y, then 5851 ◁ p. 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 821 ◁ p. If 8 ◁ y, then 881 ◁ p. If 9 ◁ y, then 89 ◁ p. Hence we may assume all digits of y are 0 or 5.
If 50 ◁ y, then 8501 ◁ p. 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 991 ◁ p. Hence we may assume all digits of y are 0, 2, 5, or 8.
If 00 ◁ y, then 9001 ◁ p. If 22 ◁ y, then 9221 ◁ p. If 55 ◁ y, then 9551 ◁ p. 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 9851 ◁ p. 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) 13 ◁ p, 23 ◁ p, 43 ◁ p, 53 ◁ p, 73 ◁ p, or 83 ◁ p. 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) 17 ◁ p, 37 ◁ p, 47 ◁ p, 67 ◁ p, or 97 ◁ p. 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 227 ◁ p. If 5 ◁ y, then 257 ◁ p. If 7 ◁ y, then 277 ◁ p. Hence we may assume all digits of y are 0 or 8.
If 08 ◁ y, then 2087 ◁ p. 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 557 ◁ p. If 7 ◁ y, then 577 ◁ p. If 8 ◁ y, then 587 ◁ p. 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 50207 ◁ p. 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 727 ◁ p. If 5 ◁ y, then 757 ◁ p. If 8 ◁ y, then 787 ◁ p. 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 827 ◁ p. If 5 ◁ y, then 857 ◁ p. If 7 ◁ y, then 877 ◁ p. If 8 ◁ y, then 887 ◁ p. 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) 19 ◁ p, 29 ◁ p, 59 ◁ p, 79 ◁ p, or 89 ◁ p. Hence we may assume all digits of x are 0, 3, 4, 6, or 9.
If 44 ◁ x, then 449 ◁ p. 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 349 ◁ p.
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 409 ◁ p. If 3 ◁ y, then 43 ◁ p. If 9 ◁ y, then 499 ◁ p. 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 6469 ◁ p. If 9 ◁ z, then 499 ◁ p. Hence we may assume z is empty.
If 3 ◁ y, then 349 ◁ p. If 9 ◁ y, then 6949 ◁ p. Hence we may assume all digits of y are 0 or 6.
If 06 ◁ y, then 60649 ◁ p. Hence we may assume y ∈ {6}{0}.
If 666 ◁ y, then 666649 ◁ p. If 00000 ◁ y, then 60000049 ◁ p. 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 9049 ◁ p. If 3 ◁ y, then 349 ◁ p. If 6 ◁ y, then 9649 ◁ p. If 9 ◁ y, then 9949 ◁ p. 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.