Shanks' logarithm on the Stern–Brocot tree
Shanks' logarithm
Logarithms were rolled out in Europe in the early 17th century. In the form of tables and later slide rulers, they were primary tools for high-precision calculations in navigation and engineering until they moved on to the the electronic calculator in the 20th century.
Daniel Shanks was rightly surprised to discover an apparently new, very simple algorithm for calculating logarithms in 1954 — three centuries into their history.
It is a recursive algorithm, similar to Euclid's algorithm, that successively outputs terms of the continued fraction of the logarithm.
Let's use it to calculate the logarithm of to the base .
We first look which power of is the largest below . In this case it is the second power, , and we got out first term of the continued fraction, the exponent :
We now recur as if we'd want to calculate the logarithm of to the base . That means, we now need to find the largest power of below 2. This is , because so we can output the next term
And we recur again now looking for the logarithm of to the base , which would output 9.
And so on.
The interested reader can try out the small application below. The app is preset to calculate the logarithm of to the base as we did above. Pressing ⏯︎ starts or pauses the calculation. Pressing ⏮︎ will reset the algorithm. You can enter other numbers in the two input fields.
⚠ If the base is smaller than the argument (a<b), this browser tab will crash.
We can now succesively calculate the elements of the continued fraction of any logarithm of two integers .
For some logarithms, like the, the algorithm will return a 3 and stop. But in most cases logarithms are irrational numbers, as in the example . Then the continued fractions will never end.
The case and, more general, can be covered using the identities
However, it is not obvious how to use Shanks' algorithm on irrational numbers themselves.
Suppose we want to compute the first three elements of the continued fraction of . The continued fractions of and are known, but we don't not know in advance how much of them we need to get the desired precision. A trial-and-error method could be used to successively use more terms of and until the 3rd element of the resulting sequence no longer changes.
It would be more elegant, if there were a version of Shanks' algorithm that worked only on continued fractions, without having to switch back and forth between the continued and the reduced fractions.
Fortunately, two decades after Shanks' discovery, another very simple and beautiful algorithm was discovered — lazy continued fraction arithmetic.
In the following, I will show how an extension of Shanks' logarithm to the real numbers comes as a free lunch using lazy arithmetic.
Adaptation to lazy arithmetic
How to do arithmetic directly on continued fractions in a lazy way was figured out in 1972 by Bill Gosper — considered by some to be the first hacker.
Let's say we want to calculate the product of two, potentially infinite, continued fractions. Gosper's algorithm will output the product term by term, using only as many terms from the operands as needed for the next term of the result.
Explaining the algorithm in detail is beyond my scope here, but to get an idea of how it works, I'd like to point the reader to a web visualization.
Continued fractions are isomorphic to paths in the Stern–Brocot tree
and thus the arithmetic can be adapted to them as well. This was done by Milad Niqui in 2004 [Niqui].
The generalization of Shanks' logarithm to the Stern–Brocot tree is remarkably simple, as can be seen in a stripped-down Clojure version of the algorithm.
(defn shanks
"- `mem` holds the power of a
- `dir` is either L or R, the value of the next output bit"
[a b mem dir]
(lazy-seq
(cond (< (* a mem) b)
;; output L or R
(cons dir (shanks a b (* a mem) dir))
(> (* a mem) b)
;; flip direction
(shanks (/ b mem) a 0 (flip dir))))
We simply use lazy multiplication and comparison inside the algorithm.
To my surprise, this simple adjustment was sufficient to compute logarithms of irrational numbers. Here, for example, the first 23 bits of .
In summary, by using lazy arithmetic within Shanks' logarithm algorithm, the logarithm algorithm itself becomes lazy.
The following table shows 5 values of computed up to 32bit for 5 different values.
| x | x (IEEE754) | log₂(x) | log₂(x) (IEEE754) | log₂(x) (Continued Fraction) |
|---|---|---|---|---|
| 1 | 1.0 | 0 | 0.0 | [0] |
| R | 2.0 | 1 | 1.0 | [1] |
| RRR | 4.0 | R | 2.0 | [2] |
| RLLRR | 1.428571428571429 | LRLLLLLLLLLLLLLLLLRLRLLLLLLLLRLL | 0.5145731235491359 | [0,1,1,16,1,1,1,8,1,3] |
| LLLLL | 0.1666666666666667 | -RRLRLLRRLLLRLLLLLRRLLLLLLLLLLLLL | -2.584962562396007 | -[2,1,1,2,2,3,1,5,2,14] |
The log of 1 is catched beforehand since Shanks' algorithm does not terminate in that case. For and other powers of two, however, it does. The best five-bit approximation of has a dual logarithm very close to .
And here are some values for the natural logarithm. Full tables for numbers up to 5 bit are at the end of the article.
| x | x (IEEE754) | ln(x) | ln(x) (IEEE754) | ln(x) (Continued Fraction) |
|---|---|---|---|---|
| 1 | 1.0 | 0 | 0.0 | [0] |
| L | 0.5 | -LRRLLLRLLLLLLRRR | -0.6931506849315068 | -[0,1,2,3,1,6,4] |
| R | 2.0 | LRRLLLRLLLLLLRRR | 0.6931506849315068 | [0,1,2,3,1,6,4] |
| RRLRR | 2.75 | RLLLLLLLLLLLLLLL | 1.0625 | [1,16] |
| LLLLL | 0.1666666666666667 | -RLRRRLRRRRLLLLLL | -1.791907514450867 | -[1,1,3,1,4,7] |
As you can see from the following plot, the logarithms are approximated very accurately. This is despite the fact that is only computed to 16 bits.

Exponentiation
The logarithm can now be used to define exponentiation of arbitrary irrationals in a greedy manner. A stripped down version of a Clojure program to calculate might look like this.
(defn exp
[a r b]
(lazy-seq
(cond (< (log a r) b)
(cons R (exp a b (conj r R)))
(> (log a r) b)
(cons L (exp a b (conj r L))))))
We start with and calulate . If it's less than , we increase by appending an , if it's greater, we append an . Otherwise we stop, because we've found the solution.

Surprisingly, high precision calculations of exponentials seem to be much cheaper than logarithms, even though exponentiation uses logarithms.
This suggests that not many bits of the logarithms are actually needed to compute the exponential functions, but for now a detailed analysis of the complexity is an open topic, and I hope to come back to it in the future.
References
[Shanks] Daniel Shanks, A Logarithm Algorithm, Mathematics of Computation 8, no. 46 (1954): 60–64
[Gosper] Bill Gosper, HAKMEM, 1972, 37-44 and Appendix 2: Continued Fraction Arithmetic
[Niqui] Milad Niqui, Exact Arithmetic on the Stern–Brocot Tree, Journal of Discrete Algorithms, 2004 Symposium on String Processing and Information Retrieval, 5, no. 2 (June 1, 2007): 356–79
Appendix: Tables

For a better bird's eye view, we replace with ● and with ○.
log₂(x)
| x | x (IEEE754) | log₂(x) | log₂(x) (IEEE754) | log₂(x) (Continued Fraction) |
|---|---|---|---|---|
| ○○○○○ | 0.1666666666666667 | -●●○●○○●●○○○●○○○○○●●○○○○○○○○○○○○○ | -2.584962562396007 | -[2,1,1,2,2,3,1,5,2,14] |
| ○○○○ | 0.2 | -●●○○○●●●●●●●●●○○●●○○○○●●●●●●○○●○ | -2.321928093990165 | -[2,3,9,2,2,4,6,2,1,2] |
| ○○○○● | 0.2222222222222222 | -●●○○○○○●○○○○○○○●○○●●●●○○○○○○○○○○ | -2.169925013390466 | -[2,5,1,7,1,2,4,11] |
| ○○○ | 0.25 | -● | -2.0 | -[2] |
| ○○○●○ | 0.2727272727272727 | -●○●●●●●●○●●●●●●●●●●●●●●●●●●●●●●● | -1.874371859296482 | -[1,1,6,1,24] |
| ○○○● | 0.2857142857142857 | -●○●●●●○○○○○●●●●○○○○○●●●●○●●●●●●● | -1.807354912851944 | -[1,1,4,5,4,5,4,1,8] |
| ○○○●● | 0.3 | -●○●●○●●●●○○○○○○○○○○○○○○○○○○○○○○● | -1.736964078794902 | -[1,1,2,1,4,22,2] |
| ○○ | 0.3333333333333333 | -●○●○○●●○○○●○○○○○●●○○○○○○○○○○○○○○ | -1.584962552280907 | -[1,1,1,2,2,3,1,5,2,15] |
| ○○●○○ | 0.3636363636363636 | -●○○●●●●●○●○●●●●●●●●●●●●●●●●●●●●● | -1.459427207637232 | -[1,2,5,1,1,1,22] |
| ○○●○ | 0.375 | -●○○●●○○●●●○●●●●●○○●●●●●●●●●●●●●● | -1.415037447719093 | -[1,2,2,2,3,1,5,2,15] |
| ○○●○● | 0.3846153846153846 | -●○○●○●○○○●○○○○●○○●●●○○○○○●○●●○○○ | -1.378511623306718 | -[1,2,1,1,1,3,1,4,1,2,3,5,1,1,2,4] |
| ○○● | 0.4 | -●○○○●●●●●●●●●○○●●○○○○●●●●●●○○●○● | -1.321928094522952 | -[1,3,9,2,2,4,6,2,1,1,2] |
| ○○●●○ | 0.4166666666666667 | -●○○○●○○○○●●●●●●●●●●●●●●●●●●●●●●○ | -1.263035921205098 | -[1,3,1,4,22,2] |
| ○○●● | 0.4285714285714286 | -●○○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○ | -1.222689075630252 | -[1,4,2,26] |
| ○○●●● | 0.4444444444444444 | -●○○○○○●○○○○○○○●○○●●●●○○○○○○○○○○○ | -1.169924996926104 | -[1,5,1,7,1,2,4,12] |
| ○ | 0.5 | -1 | -1.0 | -[1] |
| ○●○○○ | 0.5555555555555556 | -○●●●●●○●○○●○○●●●●●●●●●●●●●●●●●●● | -0.8479968578161822 | -[0,1,5,1,1,2,1,2,20] |
| ○●○○ | 0.5714285714285714 | -○●●●●○○○○○●●●●○○○○○●●●●○●●●●●●●● | -0.8073549141697342 | -[0,1,4,5,4,5,4,1,9] |
| ○●○○● | 0.5833333333333333 | -○●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●● | -0.7773279352226721 | -[0,1,3,2,27] |
| ○●○ | 0.6 | -○●●○●●●●○○○○○○○○○○○○○○○○○○○○○○●● | -0.7369649805447471 | -[0,1,2,1,4,22,3] |
| ○●○●○ | 0.6153846153846154 | -○●●○○●○○○○○○○○○○○○○○○○○○○○○○●●●● | -0.7004366812227074 | -[0,1,2,2,1,22,5] |
| ○●○● | 0.625 | -○●●○○○○○○○○○●●○○●●●●○○○○○○●●○●○○ | -0.6780719052407507 | -[0,1,2,9,2,2,4,6,2,1,1,3] |
| ○●○●● | 0.6363636363636364 | -○●○●●●●●●○●●●●●●●●●●●●●●●●●●○●○○ | -0.6520766773162939 | -[0,1,1,1,6,1,18,1,1,3] |
| ○● | 0.6666666666666667 | -○●○○●●○○○●○○○○○●●○○○○○○○○○○○○○○○ | -0.5849625433948474 | -[0,1,1,2,2,3,1,5,2,16] |
| ○●●○○ | 0.7 | -○●○○○○○○○○○○○○○○○○●○●○○○○○○○○●○○ | -0.5145731235491359 | -[0,1,1,16,1,1,1,8,1,3] |
| ○●●○ | 0.7142857142857143 | -○○●●●●●●●●●●●●●●●●○●○●●●●●●●●○●● | -0.4854268764508641 | -[0,2,16,1,1,1,8,1,3] |
| ○●●○● | 0.7272727272727273 | -○○●●●●●○●○●●●●●●●●●●●●●●●●●●●●●● | -0.4594285714285714 | -[0,2,5,1,1,1,23] |
| ○●● | 0.75 | -○○●●○○●●●○●●●●●○○●●●●●●●●●●●●●●● | -0.4150374566051526 | -[0,2,2,2,3,1,5,2,16] |
| ○●●●○ | 0.7777777777777778 | -○○●○○○●●●●●●●○○●●●●●●●●●●○●●●●●○ | -0.3625700767365115 | -[0,2,1,3,7,2,10,1,5,2] |
| ○●●● | 0.8 | -○○○●●●●●●●●●○○●●○○○○●●●●●●○○●○●● | -0.3219280947592493 | -[0,3,9,2,2,4,6,2,1,1,3] |
| ○●●●● | 0.8333333333333333 | -○○○●○○○○●●●●●●●●●●●●●●●●●●●●●●○○ | -0.2630350194552529 | -[0,3,1,4,22,3] |
| 1 | 1.0 | 0 | 0.0 | [0] |
| ●○○○○ | 1.2 | ○○○●○○○○●●●●●●●●●●●●●●●●●●●●●●○○ | 0.2630350194552529 | [0,3,1,4,22,3] |
| ●○○○ | 1.25 | ○○○●●●●●●●●●○○●●○○○○●●●●●●○○●○●● | 0.3219280947592493 | [0,3,9,2,2,4,6,2,1,1,3] |
| ●○○○● | 1.285714285714286 | ○○●○○○●●●●●●●○○●●●●●●●●●●○●●●●●○ | 0.3625700767365115 | [0,2,1,3,7,2,10,1,5,2] |
| ●○○ | 1.333333333333333 | ○○●●○○●●●○●●●●●○○●●●●●●●●●●●●●●● | 0.4150374566051526 | [0,2,2,2,3,1,5,2,16] |
| ●○○●○ | 1.375 | ○○●●●●●○●○●●●●●●●●●●●●●●●●●●●●●● | 0.4594285714285714 | [0,2,5,1,1,1,23] |
| ●○○● | 1.4 | ○○●●●●●●●●●●●●●●●●○●○●●●●●●●●○●● | 0.4854268764508641 | [0,2,16,1,1,1,8,1,3] |
| ●○○●● | 1.428571428571429 | ○●○○○○○○○○○○○○○○○○●○●○○○○○○○○●○○ | 0.5145731235491359 | [0,1,1,16,1,1,1,8,1,3] |
| ●○ | 1.5 | ○●○○●●○○○●○○○○○●●○○○○○○○○○○○○○○○ | 0.5849625433948474 | [0,1,1,2,2,3,1,5,2,16] |
| ●○●○○ | 1.571428571428571 | ○●○●●●●●●○●●●●●●●●●●●●●●●●●●○●○○ | 0.6520766773162939 | [0,1,1,1,6,1,18,1,1,3] |
| ●○●○ | 1.6 | ○●●○○○○○○○○○●●○○●●●●○○○○○○●●○●○○ | 0.6780719052407507 | [0,1,2,9,2,2,4,6,2,1,1,3] |
| ●○●○● | 1.625 | ○●●○○●○○○○○○○○○○○○○○○○○○○○○○●●●● | 0.7004366812227074 | [0,1,2,2,1,22,5] |
| ●○● | 1.666666666666667 | ○●●○●●●●○○○○○○○○○○○○○○○○○○○○○○●● | 0.7369649805447471 | [0,1,2,1,4,22,3] |
| ●○●●○ | 1.714285714285714 | ○●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.7773279352226721 | [0,1,3,2,27] |
| ●○●● | 1.75 | ○●●●●○○○○○●●●●○○○○○●●●●○●●●●●●●● | 0.8073549141697342 | [0,1,4,5,4,5,4,1,9] |
| ●○●●● | 1.8 | ○●●●●●○●○○●○○●●●●●●●●●●●●●●●●●●● | 0.8479968578161822 | [0,1,5,1,1,2,1,2,20] |
| ● | 2.0 | 1 | 1.0 | [1] |
| ●●○○○ | 2.25 | ●○○○○○●○○○○○○○●○○●●●●○○○○○○○○○○○ | 1.169924996926104 | [1,5,1,7,1,2,4,12] |
| ●●○○ | 2.333333333333333 | ●○○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.222689075630252 | [1,4,2,26] |
| ●●○○● | 2.4 | ●○○○●○○○○●●●●●●●●●●●●●●●●●●●●●●○ | 1.263035921205098 | [1,3,1,4,22,2] |
| ●●○ | 2.5 | ●○○○●●●●●●●●●○○●●○○○○●●●●●●○○●○● | 1.321928094522952 | [1,3,9,2,2,4,6,2,1,1,2] |
| ●●○●○ | 2.6 | ●○○●○●○○○●○○○○●○○●●●○○○○○●○●●○○○ | 1.378511623306718 | [1,2,1,1,1,3,1,4,1,2,3,5,1,1,2,4] |
| ●●○● | 2.666666666666667 | ●○○●●○○●●●○●●●●●○○●●●●●●●●●●●●●● | 1.415037447719093 | [1,2,2,2,3,1,5,2,15] |
| ●●○●● | 2.75 | ●○○●●●●●○●○●●●●●●●●●●●●●●●●●●●●● | 1.459427207637232 | [1,2,5,1,1,1,22] |
| ●● | 3.0 | ●○●○○●●○○○●○○○○○●●○○○○○○○○○○○○○○ | 1.584962552280907 | [1,1,1,2,2,3,1,5,2,15] |
| ●●●○○ | 3.333333333333333 | ●○●●○●●●●○○○○○○○○○○○○○○○○○○○○○○● | 1.736964078794902 | [1,1,2,1,4,22,2] |
| ●●●○ | 3.5 | ●○●●●●○○○○○●●●●○○○○○●●●●○●●●●●●● | 1.807354912851944 | [1,1,4,5,4,5,4,1,8] |
| ●●●○● | 3.666666666666667 | ●○●●●●●●○●●●●●●●●●●●●●●●●●●●●●●● | 1.874371859296482 | [1,1,6,1,24] |
| ●●● | 4.0 | ● | 2.0 | [2] |
| ●●●●○ | 4.5 | ●●○○○○○●○○○○○○○●○○●●●●○○○○○○○○○○ | 2.169925013390466 | [2,5,1,7,1,2,4,11] |
| ●●●● | 5.0 | ●●○○○●●●●●●●●●○○●●○○○○●●●●●●○○●○ | 2.321928093990165 | [2,3,9,2,2,4,6,2,1,2] |
| ●●●●● | 6.0 | ●●○●○○●●○○○●○○○○○●●○○○○○○○○○○○○○ | 2.584962562396007 | [2,1,1,2,2,3,1,5,2,14] |
ln(x)
These are the natural logarithms up to 16bit except for and . The 11th bit of these took too long to compute. Further investigation is needed.
| x | x (IEEE754) | ln(x) | ln(x) (IEEE754) | ln(x) (Continued Fraction) |
|---|---|---|---|---|
| ○○○○○ | 0.1666666666666667 | -●○●●●○●●●●○○○○○○ | -1.791907514450867 | -[1,1,3,1,4,7] |
| ○○○○ | 0.2 | -●○●○●○○○●○●○○○●● | -1.609436435124509 | -[1,1,1,1,1,3,1,1,1,3,3] |
| ○○○○● | 0.2222222222222222 | -●○●○○○○○○○○○○○○○ | -1.517241379310345 | -[1,1,1,14] |
| ○○○ | 0.25 | -●○○●○●●○○○●●●●●● | -1.386292834890966 | -[1,2,1,1,2,3,7] |
| ○○○●○ | 0.2727272727272727 | -●○○○●●○●●●●●●●●● | -1.299065420560748 | -[1,3,2,1,10] |
| ○○○● | 0.2857142857142857 | -●○○○●○○○○○○○○○○○ | -1.254901960784314 | -[1,3,1,12] |
| ○○○●● | 0.3 | -●○○○○●○○○○○○○○○● | -1.203883495145631 | -[1,4,1,9,2] |
| ○○ | 0.3333333333333333 | -●○○○○○○○○○○●●●●● | -1.098360655737705 | -[1,10,6] |
| ○○●○○ | 0.3636363636363636 | -●○○○○○○○○○○○○○○○ | -1.0625 | -[1,16] |
| ○○●○ | 0.375 | -○●●●●●●●●●●●●●●● | -0.9411764705882353 | -[0,1,16] |
| ○○●○● | 0.3846153846153846 | -○●●●●●●●●●●●●●●● | -0.9411764705882353 | -[0,1,16] |
| ○○● | 0.4 | -○●●●●●●●●●●○●●●● | -0.9154929577464789 | -[0,1,10,1,5] |
| ○○●●○ | 0.4166666666666667 | -○●●●●●●●○○○○○○○○ | -0.8767123287671234 | -[0,1,7,9] |
| ○○●● | 0.4285714285714286 | -○●●●●●○●○○○○●○●○ | -0.8472998137802606 | -[0,1,5,1,1,4,1,1,1,2] |
| ○○●●● | 0.4444444444444444 | -○●●●●○○○●●○○○○○● | -0.8109339407744875 | -[0,1,4,3,2,5,2] |
| ○ | 0.5 | -○●●○○○●○○○○○○●●● | -0.6931506849315068 | -[0,1,2,3,1,6,4] |
| ○●○○○ | 0.5555555555555556 | -○●○○●●○●●●●●●●○○ | -0.5878048780487805 | -[0,1,1,2,2,1,7,3] |
| ○●○○ | 0.5714285714285714 | -○●○○○●○○●●●○●●●● | -0.5596184419713831 | -[0,1,1,3,1,2,3,1,5] |
| ○●○○● | 0.5833333333333333 | -○●○○○○○●○○○○○○○○ | -0.5390625 | -[0,1,1,5,1,9] |
| ○●○ | 0.6 | -○●○○○○○○○○○○○○○○ | -0.5161290322580645 | -[0,1,1,15] |
| ○●○●○ | 0.6153846153846154 | -○○●●●●●●●● | -0.4736842105263158 | -[0,2,9] |
| ○●○● | 0.625 | -○○●●●●●●●○●●●●●○ | -0.4700460829493088 | -[0,2,7,1,5,2] |
| ○●○●● | 0.6363636363636364 | -○○●●●●○●●○○●●○○○ | -0.4519846350832266 | -[0,2,4,1,2,2,2,4] |
| ○● | 0.6666666666666667 | -○○●●○○○○○○●○○○○○ | -0.405511811023622 | -[0,2,2,6,1,6] |
| ○●●○○ | 0.7 | -○○●○○○○●●●●●●●●● | -0.3566433566433566 | -[0,2,1,4,10] |
| ○●●○ | 0.7142857142857143 | -○○●○○○○○○○○○○○○○ | -0.3409090909090909 | -[0,2,1,14] |
| ○●●○● | 0.7272727272727273 | -○○○●●●●●●●○○○○○○ | -0.3184713375796178 | -[0,3,7,7] |
| ○●● | 0.75 | -○○○●●○○○○○○○○○●○ | -0.2877358490566038 | -[0,3,2,9,1,2] |
| ○●●●○ | 0.7777777777777778 | -○○○●○○○○○○○○○○○○ | -0.2545454545454545 | -[0,3,1,13] |
| ○●●● | 0.8 | -○○○○●●○○○○○○○○○○ | -0.2233009708737864 | -[0,4,2,11] |
| ○●●●● | 0.8333333333333333 | -○○○○○●●○○○○○○○○○ | -0.1826086956521739 | -[0,5,2,10] |
| 1 | 1.0 | 0 | 0.0 | [0] |
| ●○○○○ | 1.2 | ○○○○○●●○○○○○○○○○ | 0.1826086956521739 | [0,5,2,10] |
| ●○○○ | 1.25 | ○○○○●●○○○○○○○○○○ | 0.2233009708737864 | [0,4,2,11] |
| ●○○○● | 1.285714285714286 | ○○○●○○○○○○○○○○○○ | 0.2545454545454545 | [0,3,1,13] |
| ●○○ | 1.333333333333333 | ○○○●●○○○○○○○○○●○ | 0.2877358490566038 | [0,3,2,9,1,2] |
| ●○○●○ | 1.375 | ○○○●●●●●●●○○○○○○ | 0.3184713375796178 | [0,3,7,7] |
| ●○○● | 1.4 | ○○●○○○○○○○○○○○○○ | 0.3409090909090909 | [0,2,1,14] |
| ●○○●● | 1.428571428571429 | ○○●○○○○●●●●●●●●● | 0.3566433566433566 | [0,2,1,4,10] |
| ●○ | 1.5 | ○○●●○○○○○○●○○○○○ | 0.405511811023622 | [0,2,2,6,1,6] |
| ●○●○○ | 1.571428571428571 | ○○●●●●○●●○○●●○○○ | 0.4519846350832266 | [0,2,4,1,2,2,2,4] |
| ●○●○ | 1.6 | ○○●●●●●●●○●●●●●○ | 0.4700460829493088 | [0,2,7,1,5,2] |
| ●○●○● | 1.625 | ○○●●●●●●●● | 0.4736842105263158 | [0,2,9] |
| ●○● | 1.666666666666667 | ○●○○○○○○○○○○○○○○ | 0.5161290322580645 | [0,1,1,15] |
| ●○●●○ | 1.714285714285714 | ○●○○○○○●○○○○○○○○ | 0.5390625 | [0,1,1,5,1,9] |
| ●○●● | 1.75 | ○●○○○●○○●●●○●●●● | 0.5596184419713831 | [0,1,1,3,1,2,3,1,5] |
| ●○●●● | 1.8 | ○●○○●●○●●●●●●●○○ | 0.5878048780487805 | [0,1,1,2,2,1,7,3] |
| ● | 2.0 | ○●●○○○●○○○○○○●●● | 0.6931506849315068 | [0,1,2,3,1,6,4] |
| ●●○○○ | 2.25 | ○●●●●○○○●●○○○○○● | 0.8109339407744875 | [0,1,4,3,2,5,2] |
| ●●○○ | 2.333333333333333 | ○●●●●●○●○○○○●○●○ | 0.8472998137802606 | [0,1,5,1,1,4,1,1,1,2] |
| ●●○○● | 2.4 | ○●●●●●●●○○○○○○○○ | 0.8767123287671234 | [0,1,7,9] |
| ●●○ | 2.5 | ○●●●●●●●●●●○●●●● | 0.9154929577464789 | [0,1,10,1,5] |
| ●●○●○ | 2.6 | ○●●●●●●●●●●●●●●● | 0.9411764705882353 | [0,1,16] |
| ●●○● | 2.666666666666667 | ○●●●●●●●●●●●●●●● | 0.9411764705882353 | [0,1,16] |
| ●●○●● | 2.75 | ●○○○○○○○○○○○○○○○ | 1.0625 | [1,16] |
| ●● | 3.0 | ●○○○○○○○○○○●●●●● | 1.098360655737705 | [1,10,6] |
| ●●●○○ | 3.333333333333333 | ●○○○○●○○○○○○○○○● | 1.203883495145631 | [1,4,1,9,2] |
| ●●●○ | 3.5 | ●○○○●○○○○○○○○○○○ | 1.254901960784314 | [1,3,1,12] |
| ●●●○● | 3.666666666666667 | ●○○○●●○●●●●●●●●● | 1.299065420560748 | [1,3,2,1,10] |
| ●●● | 4.0 | ●○○●○●●○○○●●●●●● | 1.386292834890966 | [1,2,1,1,2,3,7] |
| ●●●●○ | 4.5 | ●○●○○○○○○○○○○○○○ | 1.517241379310345 | [1,1,1,14] |
| ●●●● | 5.0 | ●○●○●○○○●○●○○○●● | 1.609436435124509 | [1,1,1,1,1,3,1,1,1,3,3] |
| ●●●●● | 6.0 | ●○●●●○●●●●○○○○○○ | 1.791907514450867 | [1,1,3,1,4,7] |
2^x
In this table, you can find the famous ●○○●●○○●●○○●●○○●●○○●●….
| x | x (IEEE754) | exp(x) | exp(x) (IEEE754) | exp(x) (Continued Fraction) |
|---|---|---|---|---|
| -●●●●● | -6.0 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.015625 | [0,64] |
| -●●●● | -5.0 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.03125 | [0,32] |
| -●●●●○ | -4.5 | ○○○○○○○○○○○○○○○○○○○○○○●○●○○●●●●●●○○○○○○○○○○○●●●●●●○○●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●○○●●●●●●○○○○○○○○○○○●●●●●●○ | 0.04419417382415922 | [0,22,1,1,1,2,6,11,6,2,1,1,1,44,1,1,1,2,6,11,6,2] |
| -●●● | -4.0 | ○○○○○○○○○○○○○○○ | 0.0625 | [0,16] |
| -●●●○● | -3.666666666666667 | ○○○○○○○○○○○○●○○●●●○○○○○○○○○○○○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.07874506589590388 | [0,12,1,2,3,12,3,96] |
| -●●●○ | -3.5 | ○○○○○○○○○○○●●●○○○○○●●●○○○○○○○○○○○○○○○○○○○○○○●●●○○○○○●●●○○○○○○○○○○○○○○○○○○○○○○●●●○○○○○●●●○○○○○○○○○○○○○○○○○○○○○○●●●○○○○○●●●○○○○○○○ | 0.08838834764831845 | [0,11,3,5,3,22,3,5,3,22,3,5,3,22,3,5,3,8] |
| -●●●○○ | -3.333333333333333 | ○○○○○○○○○○●●●●●●●●●●●●○●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●●●●●●●●●●●●●●●●●●●●●●● | 0.09921256574514162 | [0,10,12,1,1,2,75,2,26] |
| -●● | -3.0 | ○○○○○○○ | 0.125 | [0,8] |
| -●●○●● | -2.75 | ○○○○○○●○○●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○○●●●○○●○○○○○○○○○○○○○●●○●●●●○○● | 0.1486508893753401 | [0,6,1,2,1,1,1,80,1,6,3,2,1,13,2,1,4,2,2] |
| -●●○● | -2.666666666666667 | ○○○○○○●●○●●●●●●○○○○○○●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.157490131318041 | [0,6,2,1,6,6,6,102] |
| -●●○●○ | -2.6 | ○○○○○○●●●●●●●●●●●●●●●○●●●●●●●●●○●●○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●○●○○●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.1649384888466118 | [0,6,15,1,9,1,2,1,2,28,4,1,1,2,15,1,1,39] |
| -●●○ | -2.5 | ○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○○○○○○○○●○●○○○ | 0.1767766952966369 | [0,5,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,4] |
| -●●○○● | -2.4 | ○○○○○●●●○●○○●●●●●●●●●●●○●●●○○○●●●●●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○●○○○○●○●○○○○○○○○○○● | 0.1894645708137998 | [0,5,3,1,1,2,11,1,3,3,13,1,60,1,1,3,1,4,1,1,1,10,2] |
| -●●○○ | -2.333333333333333 | ○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●○●●● | 0.1984251314960248 | [0,5,25,5,37,1,2,1,44,2,2,1,4] |
| -●●○○○ | -2.25 | ○○○○●○○○●●●●●●●●○●●●●●●●●●○○○●●○●○○●●●●●●○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○●●●○○○○○○○●○○●●○●○●○●○●●○○●●●●○●○●●●●●●●○●○○ | 0.2102241038134286 | [0,4,1,3,8,1,9,3,2,1,1,2,6,9,28,1,1,4,3,7,1,2,2,1,1,1,1,1,1,1,2,2,4,1,1,1,7,1,1,3] |
| -● | -2.0 | ○○○ | 0.25 | [0,4] |
| -●○●●● | -1.8 | ○○○●●○○○○○○○○○○○○○●○●●●●○●●●●●○●●○○●○○●○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.2871745887492578 | [0,3,2,13,1,1,4,1,5,1,2,2,1,2,1,4,1,1,84] |
| -●○●● | -1.75 | ○○○●●○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.2973033707865169 | [0,3,2,1,3,120] |
| -●○●●○ | -1.714285714285714 | ○○○●●●○●○○○○●●●●●●●●●●○○●●●●●●○○○○●●●●●●●●●●●○○○○○○●○●○○●○●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.3047534135511189 | [0,3,3,1,1,4,10,2,6,4,11,6,1,1,1,2,1,1,3,1,67] |
| -●○● | -1.666666666666667 | ○○○●●●●●○●●○●○○●○●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●○○○○○●●●●○●○○●○●○●●●○●●●●●●●●●●●●●●○●●●●●● | 0.3149802624737183 | [0,3,5,1,2,1,1,2,1,1,2,1,1,62,1,1,1,5,4,1,1,2,1,1,1,1,3,1,14,1,7] |
| -●○●○● | -1.625 | ○○○●●●●●●●●●●●○●●●●●○○●●●●●●○○●●●●●●●●●●●●●●●●●●●●●●●○●○●●●○●●○○○○○●○○○●●●○○○●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○●●●○○●●●●●●●●●● | 0.3242098886627524 | [0,3,11,1,5,2,6,2,23,1,1,1,3,1,2,5,1,3,3,3,2,1,28,5,3,2,11] |
| -●○●○ | -1.6 | ○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●○○●○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○●●○●●●●●●●○○○●○○○○○○○○ | 0.3298769776932236 | [0,3,31,1,4,2,1,2,1,56,2,3,2,1,7,3,1,9] |
| -●○●○○ | -1.571428571428571 | ○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○●●○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●○●●○●○●●●○○○○ | 0.336475048158089 | [0,2,1,34,1,2,3,35,1,4,2,13,17,1,2,1,1,1,3,5] |
| -●○ | -1.5 | ○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○●○○○○● | 0.3535533905932738 | [0,2,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,2] |
| -●○○●● | -1.428571428571429 | ○○●○○●●●●○○○○○○○○○○○●●○○○●●●●○○○○●●○○●●●●●●●●●●●●●●●●●●●●●●●●●●○●○●○○●○●●●●●●●●●●●●●●○●○○●○○○○○○●●○●●○○○○○○○○○●●○●●○●●●●●●●●●●●● | 0.3714985722842371 | [0,2,1,2,4,11,2,3,4,4,2,2,26,1,1,1,1,2,1,1,14,1,1,2,1,6,2,1,2,9,2,1,2,1,13] |
| -●○○● | -1.4 | ○○●○●○○○●●○●●●●●○○●○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●○●○○○○○○○○○○●●●○○○○○●●●●●●○○○○○○○○○○○○○○○○○○● | 0.3789291416275995 | [0,2,1,1,1,3,2,1,5,2,1,1,1,1,27,1,29,1,3,1,1,10,3,5,6,18,2] |
| -●○○●○ | -1.375 | ○○●○●●○○○○○●○○○○○○○○○○○○●○○○○○○○○○○○○○●○○●●●●●●●●●●●●○○●●●●●●●●●●○●●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●○○○●●●○●○●●●●●●●●○○●●○○●● | 0.3855527063519852 | [0,2,1,1,2,5,1,12,1,13,1,2,12,2,10,1,4,2,28,1,2,3,3,1,1,1,8,2,2,2,3] |
| -●○○ | -1.333333333333333 | ○○●○●●●●●●●●●●●●○○○○○○○○○○●●●●●●●●●●●●●●●●●●○●●●●●●○●●●●●●●●●●●●●●●●●●●●●○●●○○●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●●○●●○●○●○●●●○●●●●●●● | 0.3968502629920499 | [0,2,1,1,12,10,18,1,6,1,21,1,2,2,24,1,6,1,2,1,1,1,1,1,3,1,8] |
| -●○○○● | -1.285714285714286 | ○○●●○○○●○●●●●●●○●●●●●○○●●●●●●●○○●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○●●○●○○○○○○○○○○○○○○○○○○○ | 0.410167678003819 | [0,2,2,3,1,1,6,1,5,2,7,2,2,1,53,17,2,1,1,20] |
| -●○○○ | -1.25 | ○○●●○●○●●●○●●●●●●●●●●●●●●●●●●●○●○○●●●○●●●●●●●●●●●●○○○○●○●●●●●●●●●●●●●○●●●○○●●●●●●○○○●○○○○○●○○○●●●●○○○●○○○○●●○○○●●●●●●●●●●●●●●●●○ | 0.4204482076268573 | [0,2,2,1,1,1,3,1,19,1,1,2,3,1,12,4,1,1,13,1,3,2,6,3,1,5,1,3,4,3,1,4,2,3,16,2] |
| -●○○○○ | -1.2 | ○○●●●○○●○○○●●●●●●●○○○○○○○○○○○○●○○○○○○○○○●○●○●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○●●○●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●● | 0.4352752816480621 | [0,2,3,2,1,3,7,12,1,9,1,1,1,1,14,26,2,1,6,1,30,1,4] |
| -1 | -1.0 | ○ | 0.5 | [0,2] |
| -○●●●● | -0.8333333333333333 | ○●○○○●○●●○●○○○○○○○○○○○○○○○●●○●●●●○●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○●●○●●●○●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.5612310241546865 | [0,1,1,3,1,1,2,1,1,15,2,1,4,1,20,1,1,20,2,1,3,1,2,1,1,42] |
| -○●●● | -0.8 | ○●○○●○○○○○○●●●○●○●●●●●●●●●●●●○○●●○○○○○○●○●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.5743491774985172 | [0,1,1,2,1,6,3,1,1,1,12,2,2,6,1,1,1,3,84] |
| -○●●●○ | -0.7777777777777778 | ○●○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●○○○○○○○○○○○○○○○○○○○ | 0.5832645233465626 | [0,1,1,2,1,1,100,2,1,20] |
| -○●● | -0.75 | ○●○○●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○●●●○○○○○○○○○○○○●○○●○●●○○○●●●●●○○○ | 0.5946035575013605 | [0,1,1,2,7,81,2,1,3,12,1,2,1,1,2,3,5,4] |
| -○●●○● | -0.7272727272727273 | ○●○●○○○○○○○○○●●●○○●●●●●○○○○○○○○○○○○○○○●○○○○○○○○○○○○○○●●●●○●○○●○●○●●●●●●●●●●●●●○●●○○○○○○○○○○○●○○○○●●○○○○○○○○○●●●○●●○●●●○●○●●●●○○○ | 0.6040447222022237 | [0,1,1,1,1,9,3,2,5,15,1,14,4,1,1,2,1,1,1,1,13,1,2,11,1,4,2,9,3,1,2,1,3,1,1,1,4,4] |
| -○●●○ | -0.7142857142857143 | ○●○●○○○●○●○●●●●○●●○●●○●○●○●●●●●○○○○○○○○○○○○○●●●○●●●○●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.6095068271022377 | [0,1,1,1,1,3,1,1,1,1,4,1,2,1,2,1,1,1,1,1,5,13,3,1,3,1,1,2,74] |
| -○●●○○ | -0.7 | ○●○●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○○○●○○○●○●●○○○○○○○●○○○●○○○○○○○○○○○○○○●●●○●●○○○○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.6155722066724582 | [0,1,1,1,1,1,1,30,1,12,1,3,1,1,2,7,1,3,1,14,3,1,2,12,1,27] |
| -○● | -0.6666666666666667 | ○●○●●○○●○○○●●○○○●○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○●○○●●●●●●●●●○○○○○○●●●●○●○○●●●●●●●○○●●●○○●○○○○○○●○●○○○○○○○○○○○○○○○○○○○○○○ | 0.6299605249474366 | [0,1,1,1,2,2,1,3,2,3,1,3,1,30,1,4,1,2,9,6,4,1,1,2,7,2,3,2,1,6,1,1,1,23] |
| -○●○●● | -0.6363636363636364 | ○●○●●●●○○○○○○○○○○●○●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○●●●○○○○○●○○○○○○●●○○○○○○○○○○○○●●○●○●○○○○○○○○○○○●●●●○○●○○○○○○○○○●●●●●●●○●●○ | 0.6433324490047159 | [0,1,1,1,4,10,1,1,12,24,3,5,1,6,2,12,2,1,1,1,1,11,4,2,1,9,7,1,2,2] |
| -○●○● | -0.625 | ○●○●●●●●○○●●○●●○●●○●●○●●●●●●●●●●●○○○●●●●●●●●○○●○○●●○●○●○○○○○○●○○●●●●●●●●●●●●●●○○○○○○○○○○●○●●○●●●●○●●○●○●○●●●●●○○○○○○○○○○○○○○○○○○ | 0.6484197773255048 | [0,1,1,1,5,2,2,1,2,1,2,1,2,1,11,3,8,2,1,2,2,1,1,1,1,6,1,2,14,10,1,1,2,1,4,1,2,1,1,1,1,1,5,19] |
| -○●○●○ | -0.6153846153846154 | ○●○●●●●●●●○○○●●●●●●●●○○●●●●●●●●●●○○●●●●●●●●○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.6527558488549118 | [0,1,1,1,7,3,8,2,10,2,8,3,1,82] |
| -○●○ | -0.6 | ○●○●●●●●●●●●●●●●●●○○●●○○○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.6597539555356506 | [0,1,1,1,15,2,2,5,2,100] |
| -○●○○● | -0.5833333333333333 | ○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.6675461741424802 | [0,1,2,126] |
| -○●○○ | -0.5714285714285714 | ○●●○○○○○○○○○○○○○○○○○●●○●●●●●●○○○○○○○○○○○○○○○○○●○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●○●●●●●●○○○●○●○○○○●●●●●●○●●●●●●○●●●●●● | 0.6729500963161781 | [0,1,2,17,2,1,6,17,1,9,1,26,8,1,6,3,1,1,1,4,6,1,6,1,7] |
| -○●○○○ | -0.5555555555555556 | ○●●○○○○○○○●○○○●●●●●○●●●●●●○○○○○●○○○○●○●●○○●○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.6803950000871885 | [0,1,2,7,1,3,5,1,6,5,1,4,1,1,2,2,1,1,4,81] |
| -○ | -0.5 | ○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○ | 0.7071067811865475 | [0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2] |
| -○○●●● | -0.4444444444444444 | ○●●○●●●○○●○●○○●●○○○●●●●●●●●●●●○●○●●●○●●●●●○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○●○●○ | 0.7348672461377994 | [0,1,2,1,3,2,1,1,1,2,2,3,11,1,1,1,3,1,5,9,50,23,1,1,1,2] |
| -○○●● | -0.4285714285714286 | ○●●○●●●●●●●●○○○○○●○○●○●●●●●●●●○○●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○●●○○○●●●●●●●○○○●●○○○○○○○○○○○○○●○○● | 0.7429971445684742 | [0,1,2,1,8,5,1,2,1,1,8,2,4,1,53,4,2,3,7,3,2,13,1,2,2] |
| -○○●●○ | -0.4166666666666667 | ○●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○●○●●●●●●●●●●○○●●●●●●●●●○○○○○○○○○○○○○○○○○ | 0.7491535384383666 | [0,1,2,1,73,11,1,1,10,2,9,18] |
| -○○● | -0.4 | ○●●●○○○○○○○●○○●●○●●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●●●●●●●●●●○○●○●●●○○○○○●●●●●●○○●○●●○●○○○○○○○○ | 0.757858283255199 | [0,1,3,7,1,2,2,1,2,4,56,1,14,2,1,1,3,5,6,2,1,1,2,1,1,9] |
| -○○●○● | -0.3846153846153846 | ○●●●○○○●○●○○○○○○○○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.7659831786679546 | [0,1,3,3,1,1,1,16,1,20,1,16,1,1,63] |
| -○○●○ | -0.375 | ○●●●○○●○○●●○○○○○○●●○○○○○○●○○○○○●●●●●●○○○○●●●●●○○●●○○○○●●●●●●●●●●●●●●○○●○○○○○○●○●●●●○●●●○●●○○●●○●●●○○○○●○○●●●●●●●●●●●●●●●●●●●●●●● | 0.7711054127039704 | [0,1,3,2,1,2,2,6,2,6,1,5,6,4,5,2,2,4,14,2,1,6,1,1,4,1,3,1,2,2,2,1,3,4,1,2,24] |
| -○○●○○ | -0.3636363636363636 | ○●●●○○●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●○○○○○○●●○●●●●●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●○●●●○○○●●●●●○●○●○ | 0.7772031408854597 | [0,1,3,2,21,25,12,6,2,1,13,1,24,1,3,3,5,1,1,1,1,2] |
| -○○ | -0.3333333333333333 | ○●●●○●●●●●○●○○○○●○●●●●●●●●○●●●●●●●●●●●●●●○●●●●●●●●●●○○●○○○○●●●●●●●●●●●●○○●●●○○●○○○●●●●○●○○●●●●●●●●●●●●●●○○○●●●●●●●●●●●●○●●●●●●●● | 0.7937005259840997 | [0,1,3,1,5,1,1,4,1,1,8,1,14,1,10,2,1,4,12,2,3,2,1,3,4,1,1,2,14,3,12,1,9] |
| -○○○●● | -0.3 | ○●●●●○○○●●●●●●●●●●●●●●●○○●●●●●●○○●○●●●○●●●●●●●●●●●●●●●○●○○●●●●●●●○○○○○○○●●○●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.8122523963562355 | [0,1,4,3,15,2,6,2,1,1,3,1,15,1,1,2,7,7,2,1,5,1,48] |
| -○○○● | -0.2857142857142857 | ○●●●●○●○○○●●●○○●●○●●○●●●○○○○●○○●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●○○○●○○ | 0.8203353560076379 | [0,1,4,1,1,3,3,2,2,1,2,1,3,4,1,2,26,1,1,8,5,47,1,1,1,3,1,3] |
| -○○○●○ | -0.2727272727272727 | ○●●●●○●●●●○○○○○○●○○○○○○○○○○●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●○○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○●●●●●○○●●○○○○●●●●○●○●● | 0.8277532798848108 | [0,1,4,1,4,6,1,10,7,1,29,2,3,2,4,28,2,1,5,2,2,4,4,1,1,1,3] |
| -○○○ | -0.25 | ○●●●●●○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●○●●●●●●○○●○●●○●●○●○●●○○●○○○○○○○●●○○○○○○○ | 0.8408964152537145 | [0,1,5,3,1,1,40,5,1,1,25,2,3,1,6,2,1,1,2,1,2,1,1,1,2,2,1,7,2,8] |
| -○○○○● | -0.2222222222222222 | ○●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.8573099415204678 | [0,1,6,122] |
| -○○○○ | -0.2 | ○●●●●●●○●●○●○●●●○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○●●●○○○●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○●●●○○●●●●●●●●● | 0.8705505632961241 | [0,1,6,1,2,1,1,1,3,25,1,4,3,3,7,52,1,2,3,2,10] |
| -○○○○○ | -0.1666666666666667 | ○●●●●●●●●○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●○○●●○○○○○○○○○○●●●○●●●●●●●●●○●●○○○○○○○○●●○○○●●●●●●●●●●●●●●●●●●●●●○○●●●●●●●○●●●●● | 0.8908987181403393 | [0,1,8,6,31,1,2,2,2,10,3,1,9,1,2,8,2,3,21,2,7,1,6] |
| ○○○○○ | 0.1666666666666667 | ●○○○○○○○○●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○●●○○●●●●●●●●●●○○○●○○○○○○○○○●○○●●●●●●●●○○●●●○○○○○○○○○○○○○○○○○○○○○●●○○○○○○○●○○○○○ | 1.122462048309373 | [1,8,6,31,1,2,2,2,10,3,1,9,1,2,8,2,3,21,2,7,1,6] |
| ○○○○ | 0.2 | ●○○○○○○●○○●○●○○○●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●○○○●●●○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●○○○●●○○○○○○○○○ | 1.148698354997035 | [1,6,1,2,1,1,1,3,25,1,4,3,3,7,52,1,2,3,2,10] |
| ○○○○● | 0.2222222222222222 | ●○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.16643929058663 | [1,6,122] |
| ○○○ | 0.25 | ●○○○○○●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○●○○○○○○●●○●○○●○○●○●○○●●○●●●●●●●○○●●●●●●● | 1.189207115002721 | [1,5,3,1,1,40,5,1,1,25,2,3,1,6,2,1,1,2,1,2,1,1,1,2,2,1,7,2,8] |
| ○○○●○ | 0.2727272727272727 | ●○○○○●○○○○●●●●●●○●●●●●●●●●●○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○●●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●○○○○○●●○○●●●●○○○○●○●○○ | 1.208089444404447 | [1,4,1,4,6,1,10,7,1,29,2,3,2,4,28,2,1,5,2,2,4,4,1,1,1,3] |
| ○○○● | 0.2857142857142857 | ●○○○○●○●●●○○○●●○○●○○●○○○●●●●○●●○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○●●●○●● | 1.219013654204475 | [1,4,1,1,3,3,2,2,1,2,1,3,4,1,2,26,1,1,8,5,47,1,1,1,3,1,3] |
| ○○○●● | 0.3 | ●○○○○●●●○○○○○○○○○○○○○○○●●○○○○○○●●○●○○○●○○○○○○○○○○○○○○○●○●●○○○○○○○●●●●●●●○○●○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.231144413344916 | [1,4,3,15,2,6,2,1,1,3,1,15,1,1,2,7,7,2,1,5,1,48] |
| ○○ | 0.3333333333333333 | ●○○○●○○○○○●○●●●●○●○○○○○○○○●○○○○○○○○○○○○○○●○○○○○○○○○○●●○●●●●○○○○○○○○○○○○●●○○○●●○●●●○○○○●○●●○○○○○○○○○○○○○○●●●○○○○○○○○○○○○●○○○○○○○○ | 1.259921049894873 | [1,3,1,5,1,1,4,1,1,8,1,14,1,10,2,1,4,12,2,3,2,1,3,4,1,1,2,14,3,12,1,9] |
| ○○●○○ | 0.3636363636363636 | ●○○○●●○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○●●●●●●○○●○○○○○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○●○○○●●●○○○○○●○●○● | 1.286664898009432 | [1,3,2,21,25,12,6,2,1,13,1,24,1,3,3,5,1,1,1,1,2] |
| ○○●○ | 0.375 | ●○○○●●○●●○○●●●●●●○○●●●●●●○●●●●●○○○○○○●●●●○○○○○●●○○●●●●○○○○○○○○○○○○○○●●○●●●●●●○●○○○○●○○○●○○●●○○●○○○●●●●○●●○○○○○○○○○○○○○○○○○○○○○○○ | 1.29683955465101 | [1,3,2,1,2,2,6,2,6,1,5,6,4,5,2,2,4,14,2,1,6,1,1,4,1,3,1,2,2,2,1,3,4,1,2,24] |
| ○○●○● | 0.3846153846153846 | ●○○○●●●○●○●●●●●●●●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●○●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.305511697709865 | [1,3,3,1,1,1,16,1,20,1,16,1,1,63] |
| ○○● | 0.4 | ●○○○●●●●●●●○●●○○●○○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○○○○○●●○●○○○●●●●●○○○○○○●●○●○○●○●●●●●●●● | 1.319507910772894 | [1,3,7,1,2,2,1,2,4,56,1,14,2,1,1,3,5,6,2,1,1,2,1,1,9] |
| ○○●●○ | 0.4166666666666667 | ●○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●○●○○○○○○○○○○●●○○○○○○○○○●●●●●●●●●●●●●●●●● | 1.334839854169988 | [1,2,1,73,11,1,1,10,2,9,18] |
| ○○●● | 0.4285714285714286 | ●○○●○○○○○○○○●●●●●○●●○●○○○○○○○○●●○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●○○●●●○○○○○○○●●●○○●●●●●●●●●●●●●○●●○ | 1.345900192632356 | [1,2,1,8,5,1,2,1,1,8,2,4,1,53,4,2,3,7,3,2,13,1,2,2] |
| ○○●●● | 0.4444444444444444 | ●○○●○○○●●○●○●●○○●●●○○○○○○○○○○○●○●○○○●○○○○○●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●○●○● | 1.360790000174377 | [1,2,1,3,2,1,1,1,2,2,3,11,1,1,1,3,1,5,9,50,23,1,1,1,2] |
| ○ | 0.5 | ●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○●●○○● | 1.414213562373095 | [1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2] |
| ○●○○○ | 0.5555555555555556 | ●○○●●●●●●●○●●●○○○○○●○○○○○○●●●●●○●●●●○●○○●●○●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.469734492275599 | [1,2,7,1,3,5,1,6,5,1,4,1,1,2,2,1,1,4,81] |
| ○●○○ | 0.5714285714285714 | ●○○●●●●●●●●●●●●●●●●●○○●○○○○○○●●●●●●●●●●●●●●●●●○●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○●○○○○○○●●●○●○●●●●○○○○○○●○○○○○○●○○○○○○ | 1.485994289136948 | [1,2,17,2,1,6,17,1,9,1,26,8,1,6,3,1,1,1,4,6,1,6,1,7] |
| ○●○○● | 0.5833333333333333 | ●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.49802371541502 | [1,2,126] |
| ○●○ | 0.6 | ●○●○○○○○○○○○○○○○○○●●○○●●●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.515716566167619 | [1,1,1,15,2,2,5,2,100] |
| ○●○●○ | 0.6153846153846154 | ●○●○○○○○○○●●●○○○○○○○○●●○○○○○○○○○○●●○○○○○○○○●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.531966357335957 | [1,1,1,7,3,8,2,10,2,8,3,1,82] |
| ○●○● | 0.625 | ●○●○○○○○●●○○●○○●○○●○○●○○○○○○○○○○○●●●○○○○○○○○●●○●●○○●○●○●●●●●●○●●○○○○○○○○○○○○○○●●●●●●●●●●○●○○●○○○○●○○●○●○●○○○○○●●●●●●●●●●●●●●●●●● | 1.542210825407941 | [1,1,1,5,2,2,1,2,1,2,1,2,1,11,3,8,2,1,2,2,1,1,1,1,6,1,2,14,10,1,1,2,1,4,1,2,1,1,1,1,1,5,19] |
| ○●○●● | 0.6363636363636364 | ●○●○○○○●●●●●●●●●●○●○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●○○○●●●●●○●●●●●●○○●●●●●●●●●●●●○○●○●○●●●●●●●●●●●○○○○●●○●●●●●●●●●○○○○○○○●○○● | 1.554406281770919 | [1,1,1,4,10,1,1,12,24,3,5,1,6,2,12,2,1,1,1,1,11,4,2,1,9,7,1,2,2] |
| ○● | 0.6666666666666667 | ●○●○○●●○●●●○○●●●○●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●○●●○○○○○○○○○●●●●●●○○○○●○●●○○○○○○○●●○○○●●○●●●●●●○●○●●●●●●●●●●●●●●●●●●●●●● | 1.587401051968199 | [1,1,1,2,2,1,3,2,3,1,3,1,30,1,4,1,2,9,6,4,1,1,2,7,2,3,2,1,6,1,1,1,23] |
| ○●●○○ | 0.7 | ●○●○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●●●●●●●●○●●●○●○○●●●●●●●○●●●○●●●●●●●●●●●●●●○○○●○○●●●●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.624504792712471 | [1,1,1,1,1,1,30,1,12,1,3,1,1,2,7,1,3,1,14,3,1,2,12,1,27] |
| ○●●○ | 0.7142857142857143 | ●○●○●●●○●○●○○○○●○○●○○●○●○●○○○○○●●●●●●●●●●●●●○○○●○○○●○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.640670712015276 | [1,1,1,1,3,1,1,1,1,4,1,2,1,2,1,1,1,1,1,5,13,3,1,3,1,1,2,74] |
| ○●●○● | 0.7272727272727273 | ●○●○●●●●●●●●●○○○●●○○○○○●●●●●●●●●●●●●●●○●●●●●●●●●●●●●●○○○○●○●●○●○●○○○○○○○○○○○○○●○○●●●●●●●●●●●○●●●●○○●●●●●●●●●○○○●○○●○○○●○●○○○○●●● | 1.655506559769622 | [1,1,1,1,9,3,2,5,15,1,14,4,1,1,2,1,1,1,1,13,1,2,11,1,4,2,9,3,1,2,1,3,1,1,1,4,4] |
| ○●● | 0.75 | ●○●●○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●○○○●●●●●●●●●●●●○●●○●○○●●●○○○○○●●● | 1.681792830507429 | [1,1,2,7,81,2,1,3,12,1,2,1,1,2,3,5,4] |
| ○●●●○ | 0.7777777777777778 | ●○●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○●●●●●●●●●●●●●●●●●●● | 1.714487955246033 | [1,1,2,1,1,100,2,1,20] |
| ○●●● | 0.8 | ●○●●○●●●●●●○○○●○●○○○○○○○○○○○○●●○○●●●●●●○●○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.741101126592249 | [1,1,2,1,6,3,1,1,1,12,2,2,6,1,1,1,3,84] |
| ○●●●● | 0.8333333333333333 | ●○●●●○●○○●○●●●●●●●●●●●●●●●○○●○○○○●○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●○○●○○○●○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.781797436280679 | [1,1,3,1,1,2,1,1,15,2,1,4,1,20,1,1,20,2,1,3,1,2,1,1,42] |
| 1 | 1.0 | ● | 2.0 | [2] |
| ●○○○○ | 1.2 | ●●○○○●●○●●●○○○○○○○●●●●●●●●●●●●○●●●●●●●●●○●○●○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●○○●○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○ | 2.29739670999407 | [2,3,2,1,3,7,12,1,9,1,1,1,1,14,26,2,1,6,1,30,1,4] |
| ●○○○ | 1.25 | ●●○○●○●○○○●○○○○○○○○○○○○○○○○○○○●○●●○○○●○○○○○○○○○○○○●●●●○●○○○○○○○○○○○○○●○○○●●○○○○○○●●●○●●●●●○●●●○○○○●●●○●●●●○○●●●○○○○○○○○○○○○○○○○● | 2.378414230005442 | [2,2,1,1,1,3,1,19,1,1,2,3,1,12,4,1,1,13,1,3,2,6,3,1,5,1,3,4,3,1,4,2,3,16,2] |
| ●○○○● | 1.285714285714286 | ●●○○●●●○●○○○○○○●○○○○○●●○○○○○○○●●○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●○○●○●●●●●●●●●●●●●●●●●●● | 2.438027308408951 | [2,2,3,1,1,6,1,5,2,7,2,2,1,53,17,2,1,1,20] |
| ●○○ | 1.333333333333333 | ●●○●○○○○○○○○○○○○●●●●●●●●●●○○○○○○○○○○○○○○○○○○●○○○○○○●○○○○○○○○○○○○○○○○○○○○○●○○●●○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○○●○○●○●○●○○○●○○○○○○○ | 2.519842099789746 | [2,1,1,12,10,18,1,6,1,21,1,2,2,24,1,6,1,2,1,1,1,1,1,3,1,8] |
| ●○○●○ | 1.375 | ●●○●○○●●●●●○●●●●●●●●●●●●○●●●●●●●●●●●●●○●●○○○○○○○○○○○○●●○○○○○○○○○○●○○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○●●●○○○●○●○○○○○○○○●●○○●●○○ | 2.593679109302019 | [2,1,1,2,5,1,12,1,13,1,2,12,2,10,1,4,2,28,1,2,3,3,1,1,1,8,2,2,2,3] |
| ●○○● | 1.4 | ●●○●○●●●○○●○○○○○●●○●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○●○●●●●●●●●●●○○○●●●●●○○○○○○●●●●●●●●●●●●●●●●●●○ | 2.639015821545789 | [2,1,1,1,3,2,1,5,2,1,1,1,1,27,1,29,1,3,1,1,10,3,5,6,18,2] |
| ●○○●● | 1.428571428571429 | ●●○●●○○○○●●●●●●●●●●●○○●●●○○○○●●●●○○●●○○○○○○○○○○○○○○○○○○○○○○○○○○●○●○●●○●○○○○○○○○○○○○○○●○●●○●●●●●●○○●○○●●●●●●●●●○○●○○●○○○○○○○○○○○○ | 2.691800385264712 | [2,1,2,4,11,2,3,4,4,2,2,26,1,1,1,1,2,1,1,14,1,1,2,1,6,2,1,2,9,2,1,2,1,13] |
| ●○ | 1.5 | ●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○●●●●○ | 2.82842712474619 | [2,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,2] |
| ●○●○○ | 1.571428571428571 | ●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●○○●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○●○○●○●○○○●●●● | 2.971988578273897 | [2,1,34,1,2,3,35,1,4,2,13,17,1,2,1,1,1,3,5] |
| ●○●○ | 1.6 | ●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○●●○●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●○○●○○○○○○○●●●○●●●●●●●● | 3.031433133020796 | [3,31,1,4,2,1,2,1,56,2,3,2,1,7,3,1,9] |
| ●○●○● | 1.625 | ●●●○○○○○○○○○○○●○○○○○●●○○○○○○●●○○○○○○○○○○○○○○○○○○○○○○○●○●○○○●○○●●●●●○●●●○○○●●●○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●○○○●●○○○○○○○○○○ | 3.084421650815882 | [3,11,1,5,2,6,2,23,1,1,1,3,1,2,5,1,3,3,3,2,1,28,5,3,2,11] |
| ●○● | 1.666666666666667 | ●●●○○○○○●○○●○●●○●○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○●●●●●○○○○●○●●○●○●○○○●○○○○○○○○○○○○○○●○○○○○○ | 3.174802103936399 | [3,5,1,2,1,1,2,1,1,2,1,1,62,1,1,1,5,4,1,1,2,1,1,1,1,3,1,14,1,7] |
| ●○●●○ | 1.714285714285714 | ●●●○○○●○●●●●○○○○○○○○○○●●○○○○○○●●●●○○○○○○○○○○○●●●●●●○●○●●○●○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 3.281341424030552 | [3,3,1,1,4,10,2,6,4,11,6,1,1,1,2,1,1,3,1,67] |
| ●○●● | 1.75 | ●●●○○●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 3.363567649281935 | [3,2,1,3,120] |
| ●○●●● | 1.8 | ●●●○○●●●●●●●●●●●●●○●○○○○●○○○○○●○○●●○●●○●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 3.482202253184508 | [3,2,13,1,1,4,1,5,1,2,2,1,2,1,4,1,1,84] |
| ● | 2.0 | ●●● | 4.0 | [4] |
| ●●○○○ | 2.25 | ●●●●○●●●○○○○○○○○●○○○○○○○○○●●●○○●○●●○○○○○○●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●○○○●●●●●●●○●●○○●○●○●○●○○●●○○○○●○●○○○○○○○●○●● | 4.756828460010884 | [4,1,3,8,1,9,3,2,1,1,2,6,9,28,1,1,4,3,7,1,2,2,1,1,1,1,1,1,1,2,2,4,1,1,1,7,1,1,3] |
| ●●○○ | 2.333333333333333 | ●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○●○○○ | 5.039684199579496 | [5,25,5,37,1,2,1,44,2,2,1,4] |
| ●●○○● | 2.4 | ●●●●●○○○●○●●○○○○○○○○○○○●○○○●●●○○○○○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●○●●●●○●○●●●●●●●●●●○ | 5.278031643091577 | [5,3,1,1,2,11,1,3,3,13,1,60,1,1,3,1,4,1,1,1,10,2] |
| ●●○ | 2.5 | ●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●●●●●●●●●○●○●●● | 5.65685424949238 | [5,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,10,1,1,1,4] |
| ●●○●○ | 2.6 | ●●●●●●○○○○○○○○○○○○○○○●○○○○○○○○○●○○●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○●○●●○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 6.062866266041592 | [6,15,1,9,1,2,1,2,28,4,1,1,2,15,1,1,39] |
| ●●○● | 2.666666666666667 | ●●●●●●○○●○○○○○○●●●●●●○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 6.349604204599749 | [6,2,1,6,6,6,102] |
| ●●○●● | 2.75 | ●●●●●●○●●○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●●○○○●●○●●●●●●●●●●●●●○○●○○○○●●○ | 6.727171322029716 | [6,1,2,1,1,1,80,1,6,3,2,1,13,2,1,4,2,2] |
| ●● | 3.0 | ●●●●●●● | 8.0 | [8] |
| ●●●○○ | 3.333333333333333 | ●●●●●●●●●●○○○○○○○○○○○○●○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○ | 10.07936839945064 | [10,12,1,1,2,75,2,26] |
| ●●●○ | 3.5 | ●●●●●●●●●●●○○○●●●●●○○○●●●●●●●●●●●●●●●●●●●●●●○○○●●●●●○○○●●●●●●●●●●●●●●●●●●●●●●○○○●●●●●○○○●●●●●●●●●●●●●●●●●●●●●●○○○●●●●●○○○●●●●●●● | 11.31370849898476 | [11,3,5,3,22,3,5,3,22,3,5,3,22,3,5,3,8] |
| ●●●○● | 3.666666666666667 | ●●●●●●●●●●●●○●●○○○●●●●●●●●●●●●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 12.69920837099734 | [12,1,2,3,12,3,96] |
| ●●● | 4.0 | ●●●●●●●●●●●●●●● | 16.0 | [16] |
| ●●●●○ | 4.5 | ●●●●●●●●●●●●●●●●●●●●●●○●○●●○○○○○○●●●●●●●●●●●○○○○○○●●○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○●●○○○○○○●●●●●●●●●●●○○○○○○● | 22.62741699796952 | [22,1,1,1,2,6,11,6,2,1,1,1,44,1,1,1,2,6,11,6,2] |
| ●●●● | 5.0 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 32.0 | [32] |
| ●●●●● | 6.0 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 64.0 | [64] |
exp(x)
| x | x (IEEE754) | exp(x) | exp(x) (IEEE754) | exp(x) (Continued Fraction) |
|---|---|---|---|---|
| -●●●●● | -6.0 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.007751937984496124 | [0,129] |
| -●●●● | -5.0 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.007751937984496124 | [0,129] |
| -●●●●○ | -4.5 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.01110794645400171 | [0,90,39] |
| -●●● | -4.0 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●○○○○○○○○○○○○○○○○○○○○○●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.0183156388905671 | [0,54,1,1,2,21,4,1,1,44] |
| -●●●○● | -3.666666666666667 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●○○○○●●●●●●●●●●●●○●○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●●●●○○○○○●●●●●●● | 0.0255615332065074 | [0,39,8,4,12,1,1,7,36,2,6,5,8] |
| -●●●○ | -3.5 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●○●○●●●●●●●●●●●●●●●●●●●●●○○○●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.0301973834223662 | [0,33,8,1,1,1,21,3,5,56] |
| -●●●○○ | -3.333333333333333 | ○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○●○●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●○○○○○○○○●○●●●●●●●● | 0.0356739933472524 | [0,28,31,1,1,1,1,1,2,1,37,1,5,8,1,1,9] |
| -●● | -3.0 | ○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●○●●○○○○●●●○●●●●●○●●○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●○○●●●●●●●●●●●●●○○○○○○○○○○○○○○●●●●○○○○○○●●○●○ | 0.04978706836786394 | [0,20,11,1,2,4,3,1,5,1,2,16,1,1,16,2,13,14,4,6,2,1,1,2] |
| -●●○●● | -2.75 | ○○○○○○○○○○○○○○○●○●○○○●○○○○○○○○○○○○○○○○○○○○○●○○○○○○●●○●●●●●○○○●○○●○○○○○○○○○○○○○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.06392786120670757 | [0,15,1,1,1,3,1,21,1,6,2,1,5,3,1,2,1,13,4,47] |
| -●●○● | -2.666666666666667 | ○○○○○○○○○○○○○○●●○●○○○○●●○●●●●●●○●●●●●○●●●●●●●●●●●●●●●○○○○○●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.06948345122280151 | [0,14,2,1,1,4,2,1,6,1,5,1,15,5,5,1,65] |
| -●●○●○ | -2.6 | ○○○○○○○○○○○○○●●○○○○○○●●○●○○○○○○●●○●○○●○○○○●●○○●○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●○●●○○●●○○○ | 0.07427357821433388 | [0,13,2,6,2,1,1,6,2,1,1,2,1,4,2,2,1,1,3,55,12,1,2,2,2,4] |
| -●●○ | -2.5 | ○○○○○○○○○○○○●●●●●○○●●●●●●●●●●●○●●●○○●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○●●●○●●●●●●●● | 0.08208499862389879 | [0,12,5,2,11,1,3,2,3,1,72,4,3,1,9] |
| -●●○○● | -2.4 | ○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○●○○○●○●○○○○○○○○○○○○○○●○○○○○●○●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○ | 0.0907179532894125 | [0,11,43,6,1,3,1,1,1,14,1,5,1,1,3,1,34,2] |
| -●●○○ | -2.333333333333333 | ○○○○○○○○○○●●●○○○○●○○○○○○○○○○○○○○○●●○●●●○○○○○○○●●●●○○○○○○○○○○○○●●●○○●○○●○○○○○○○○○○○○○○○○○○○○○○○●○○○●○○○○○○○○○○○○○○●●●○●●●●○○●●○○● | 0.09697196786440505 | [0,10,3,4,1,15,2,1,3,7,4,12,3,2,1,2,1,23,1,3,1,14,3,1,4,2,2,2,2] |
| -●●○○○ | -2.25 | ○○○○○○○○○●●○○○○○○○○○○○○○○○○○○○●○○○○○○○●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○●●○●●●○○○○○○○ | 0.1053992245618644 | [0,9,2,19,1,7,1,1,1,69,2,3,2,1,3,8] |
| -● | -2.0 | ○○○○○○○●●○●○○○●●●●●●●●●●●●●●●●●●○○○○○●○●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●○●○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.1353352832366127 | [0,7,2,1,1,3,18,5,1,1,6,30,8,1,1,9,35] |
| -●○●●● | -1.8 | ○○○○○○●●●●●●●●●●●●●●●●●●●●○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○●●○●○○○○○●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.1652988882215865 | [0,6,20,7,24,9,2,1,1,5,9,45] |
| -●○●● | -1.75 | ○○○○○●○○○●●●●●●●●●●●●●○○○●●●●●●●●●●●●●●●●●●●●●●●●●○●○●●●●●○●●●●●●●○○○○○○○○○○○○●○●●●●●●●○●●●○○●●●○●○○○○●○○○○●●●●●●●●●●●●●●●●●●●●● | 0.1737739434504451 | [0,5,1,3,13,3,25,1,1,1,5,1,7,12,1,1,7,1,3,2,3,1,1,4,1,4,22] |
| -●○●●○ | -1.714285714285714 | ○○○○○●○●●●●○○○○●●●●●●●●○●●●●●○○○○●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●●●●●○●●●●●●●●●○●●○○●●○●○○○○○○○○○○○○ | 0.1800923121479524 | [0,5,1,1,4,4,8,1,5,4,9,1,45,2,7,1,9,1,2,2,2,1,1,13] |
| -●○● | -1.666666666666667 | ○○○○○●●●○○●○●●●●●●●●○●●○○●○○●●●○○○○●●○○○○○○○○○○○○○○○○○○●●○●○○○○○○○○○○●●○○●○○○○●○○○○○●●●●●●●●●●●●●●●●●●●●●●●○○○○●●●●●●○○○○○○○○○○○ | 0.1888756028375618 | [0,5,3,2,1,1,8,1,2,2,1,2,3,4,2,18,2,1,1,10,2,2,1,4,1,5,23,4,6,12] |
| -●○●○● | -1.625 | ○○○○○●●●●●●●●●●●●○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○●●●●○●●●●●●●●○●●●●●●● | 0.1969116752041941 | [0,5,12,1,3,30,1,10,2,38,1,4,4,1,8,1,8] |
| -●○●○ | -1.6 | ○○○○●○○○○○○○○○○○○○○○○○○○○●●●○○●●●○○○○●●●●○○○○○○○○○○○○○○○○○○○○○○○○●○●●○○●●●●●●●●●○○○○○○●○●○○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.2018965179946554 | [0,4,1,20,3,2,3,4,4,24,1,1,2,2,9,6,1,1,1,4,2,34] |
| -●○●○○ | -1.571428571428571 | ○○○○●○○○○●●○●●●○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.2077481871436166 | [0,4,1,4,2,1,3,6,1,74,5,28] |
| -●○ | -1.5 | ○○○○●●○○○○○○○○○○○○○●●●●●●○●○○○○○○●○○○○○○●○○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.2231301601484306 | [0,4,2,13,6,1,1,6,1,6,1,20,1,67] |
| -●○○●● | -1.428571428571429 | ○○○○●●●●●○●●●○●●○●●●●●●●●●●●○●●●○○○●○○○○○○○○○○○○●○○○○○○○○○○●○●●○●●●●●●●○○○○○○○○○○●●●○●○○○○○○●○○●●●●●●●○●○●●●●●○●○○○○●○○○○●○●○○○○ | 0.2396510364417758 | [0,4,5,1,3,1,2,1,11,1,3,3,1,12,1,10,1,1,2,1,7,10,3,1,1,6,1,2,7,1,1,1,5,1,1,4,1,4,1,1,1,5] |
| -●○○● | -1.4 | ○○○○●●●●●●●●●●●●●●●●●●○○○○○○○○●○●○●○○○○○○○○○○○○○○○○○○●○○●●●●●●●●○○○○○○○○○○○○○●○●●●○●○○●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.2465969639416065 | [0,4,18,8,1,1,1,1,1,18,1,2,8,13,1,1,3,1,1,2,4,1,38] |
| -●○○●○ | -1.375 | ○○○●○○○○○○○○○○○○○○○○○○○○○●●●○●●●●●○○●○●●●●○●●●●○●●●●●○○●○○○○○●○○●●●●●●●●●○○●○○○○○●○○○○○○○○○○●●●●●○○○○●●○○○●○○○○○●○●○●●●●●●●●●●●● | 0.2528395958047465 | [0,3,1,21,3,1,5,2,1,1,4,1,4,1,5,2,1,5,1,2,9,2,1,5,1,10,5,4,2,3,1,5,1,1,1,1,13] |
| -●○○ | -1.333333333333333 | ○○○●○○○●○○○○○●○●●●●●●●●●●●●●●○○○○○●●●●●○●●●●●●●●●●●●●●●●●●●●○●●○○○●●●○○○●○●○○○●○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.2635971381157268 | [0,3,1,3,1,5,1,1,14,5,5,1,20,1,2,3,3,3,1,1,1,3,1,1,2,47] |
| -●○○○● | -1.285714285714286 | ○○○●○●○●○●●○●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.2764530466305202 | [0,3,1,1,1,1,1,1,2,1,1,4,65,47] |
| -●○○○ | -1.25 | ○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○●●○●○○●○○●●●●○○●○●○○○○○○○●●●●●●●●○○○○○○○○○●●●●●●●●●●●●●●●●●●●●○○●○●●●○●●●●●●●○○●○○○○○○○○○○○○○○○○○○ | 0.2865047968601901 | [0,3,2,25,2,1,1,2,1,2,4,2,1,1,1,7,8,9,20,2,1,1,3,1,7,2,1,19] |
| -●○○○○ | -1.2 | ○○○●●●○○○○○○○○●●●●●●●●●●●●●○●○○○●●○●○○○●○○○○○○●●●●●●●●●●●●●○●○●●○●●●●●●●●●○○○○○●●●●○○○●○●●●●●●●●●●●●●●●●●●●●●●○○○○○○○●●●●●●●○●●● | 0.3011942119122021 | [0,3,3,8,13,1,1,3,2,1,1,3,1,6,13,1,1,1,2,1,9,5,4,3,1,1,22,7,7,1,4] |
| -1 | -1.0 | ○○●○○●○●●●●○●○○○○○○●○●●●●●●●●○●○○○○○○○○○○●○●●●●●●●●●●●●○●○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●● | 0.3678794411714423 | [0,2,1,2,1,1,4,1,1,6,1,1,8,1,1,10,1,1,12,1,1,14,1,1,16,1,1,18,1,1,18] |
| -○●●●● | -0.8333333333333333 | ○○●●●○○○●●●●●●●●●○●●●●●●●●●●●●●●●●●○●●●●●●●○●●○○○○○○○○○○○○●○○○○●○●○○●○○○●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●○○●○○○○●●●○●○ | 0.4345982085070782 | [0,2,3,3,9,1,17,1,7,1,2,12,1,4,1,1,1,2,1,3,12,28,1,1,1,2,1,4,3,1,1,2] |
| -○●●● | -0.8 | ○○●●●●○○●●●○○○●○●○○●●●○●●●●●●●○●○●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.449328964117221 | [0,2,4,2,3,3,1,1,1,2,3,1,7,1,1,1,3,1,92] |
| -○●●●○ | -0.7777777777777778 | ○○●●●●●○●○●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○●○●○○●○●●●○●●●○○○○●●●●●●●○●●●●●○●○○●○●●●○○○○○○○●●●○○○●○○○○○○○○○○○○○○○○○○○●●○●●●●●●● | 0.4594258240359266 | [0,2,5,1,1,1,21,14,1,1,1,2,1,1,3,1,3,4,7,1,5,1,1,2,1,1,3,7,3,3,1,19,2,1,8] |
| -○●● | -0.75 | ○○●●●●●●●●○●○○○○●○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○●●●●●○○○●●○○○○○○○○○○○○○○○○○○○○○●○●●●○○○○○○● | 0.4723665527410147 | [0,2,8,1,1,4,1,4,1,1,59,1,1,1,5,3,2,21,1,1,3,6,2] |
| -○●●○● | -0.7272727272727273 | ○○●●●●●●●●●●●●●●○○●●○○○○○○○○○○○○●●●●●●●●●●○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.4832250811909821 | [0,2,14,2,2,12,10,1,3,83] |
| -○●●○ | -0.7142857142857143 | ○○●●●●●●●●●●●●●●●●●●●●●●●○○●●○○○○○○○○●○○○●●●●●○○○●●●●○○○○●○○●○●●●●○○○○●○●●○○●●●●●○●●○●●○○○●●●●○●●○●●●●●●○○●●●●●●●●●●●●●●●●●●●●●● | 0.4895416595569531 | [0,2,23,2,2,8,1,3,5,3,4,4,1,2,1,1,4,4,1,1,2,2,5,1,2,1,2,3,4,1,2,1,6,2,23] |
| -○●●○○ | -0.7 | ○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●○○●●●●●●●●●●●●●●○●●●●●●●●●○●●●●●●●○●●●●●●●●●●○●●●●○ | 0.4965853037914095 | [0,2,72,1,2,2,14,1,9,1,7,1,10,1,4,2] |
| -○● | -0.6666666666666667 | ○●○○○○○○○○○○○○○○○○○○●●●●●●●○●○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●● | 0.513417119032592 | [0,1,1,18,7,1,1,10,54,16,1,1,18] |
| -○●○●● | -0.6363636363636364 | ○●○○○○○○○○●●●●●●●●●●●●●●●●●○○○●●●●●●●●○●○○●●○○●●●○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○○●●○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.5292133415000503 | [0,1,1,8,17,3,8,1,1,2,2,2,3,19,1,11,2,6,41] |
| -○●○● | -0.625 | ○●○○○○○○●○●●○○○●○●●●○●○●●●○●○●●●●●○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●●●●●● | 0.5352614285189902 | [0,1,1,6,1,1,2,3,1,1,3,1,1,1,3,1,1,1,5,6,77,1,11] |
| -○●○●○ | -0.6153846153846154 | ○●○○○○○●○○●●●●●●○○●●●○●●○●○●●●●●●○○●○○○●●○○●●○●○●○○○○○○○○○○○○○○○○○●●○○●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○●○●○○○○○○○○○○○○○○ | 0.5404329964865341 | [0,1,1,5,1,2,6,2,3,1,2,1,1,1,6,2,1,3,2,2,2,1,1,1,1,17,2,2,3,2,31,1,1,3,1,1,1,15] |
| -○●○ | -0.6 | ○●○○○○●○●○●○○○○●●●●●●○●○○○○●●○○○○●○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●○○○○○○○○○●○○○○○○○○○○○●○●●●●●○○● | 0.5488116360940264 | [0,1,1,4,1,1,1,1,1,4,6,1,1,4,2,4,1,12,1,1,46,2,1,9,1,11,1,1,5,2,2] |
| -○●○○● | -0.5833333333333333 | ○●○○○●○○○○●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●●●●●○○●●●○○●●●●●○○○○○○○○○○●●●●●●●●●●●●●●● | 0.5580351457700471 | [0,1,1,3,1,4,4,1,34,4,29,2,7,2,3,2,5,10,16] |
| -○●○○ | -0.5714285714285714 | ○●○○○●●○●●●○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○●●●●●●●●●●●○●○●●○●●●○●●●●●●○○○●○○○●●○○○○○○●○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●● | 0.5647181220077592 | [0,1,1,3,2,1,3,11,26,1,1,2,11,1,1,1,2,1,3,1,6,3,1,3,2,6,1,22,12] |
| -○●○○○ | -0.5555555555555556 | ○●○○●○○○○○○○○●●●●●●●●●●●●●●●○●○●●○○○○●○○○○○○○○●○○○○●○○○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.5737534207374329 | [0,1,1,2,1,8,15,1,1,1,2,4,1,8,1,4,1,11,1,65] |
| -○ | -0.5 | ○●○●○○○○○●○●●●●●●●●●○●○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○ | 0.6065306597126334 | [0,1,1,1,1,5,1,1,9,1,1,13,1,1,17,1,1,21,1,1,25,1,1,23] |
| -○○●●● | -0.4444444444444444 | ○●○●●●○●●○○○●○○○○○○○○●●●●●●●●●●●●●●●●○○○●●●○○●●●●○●●●○●○○○●●●●●●●○○○○○○○○○●●●●●●●●●○●○●●○○○○○○●●●○○○○○○○○○○○○○○○●○●○●○●●●●○●●●●○ | 0.6411803884299546 | [0,1,1,1,3,1,2,3,1,8,16,3,3,2,4,1,3,1,1,3,7,9,9,1,1,1,2,6,3,15,1,1,1,1,1,1,4,1,4,2] |
| -○○●● | -0.4285714285714286 | ○●○●●●●●●○●○●●○○●○○●○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○ | 0.6514390575310556 | [0,1,1,1,6,1,1,1,2,2,1,2,1,3,1,56,1,4,1,1,31,1,1,9] |
| -○○●●○ | -0.4166666666666667 | ○●○●●●●●●●●●●●●●●○○○●●○●○●○●●○○○○○●●●●●○●○●○●●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●○●○○○○ | 0.6592406302004437 | [0,1,1,1,14,3,2,1,1,1,1,1,2,5,5,1,1,1,1,1,2,4,69,2,1,1,1,5] |
| -○○● | -0.4 | ○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.6703200460329646 | [0,1,2,30,12,1,1,17,65] |
| -○○●○● | -0.3846153846153846 | ○●●○○○○○○○●○●●○●●○●●○●●●●●●○●○●○●●●●●●●●●○○○○○○○○●○●●●○●●●●●●●●●●○○●●●●●○○○○○○○○○○●●○●●●○●●○●●●●●●○○○○●○○○○●○○●○○●○○○○○○○○○○○○○○ | 0.6807123983233854 | [0,1,2,7,1,1,2,1,2,1,2,1,6,1,1,1,1,1,9,8,1,1,3,1,10,2,5,10,2,1,3,1,2,1,6,4,1,4,1,2,1,2,1,15] |
| -○○●○ | -0.375 | ○●●○○○○○●●●●●●●●●●●●●●●●●●○○●○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.6872892787891606 | [0,1,2,5,18,2,1,5,1,94] |
| -○○●○○ | -0.3636363636363636 | ○●●○○○●○●●●○○○○○○●●○○○○○○○○○○○○○○○○○○●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 0.6951439283990801 | [0,1,2,3,1,1,3,6,2,18,8,84] |
| -○○ | -0.3333333333333333 | ○●●○●○○○○○○○○●○●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●● | 0.7165313105737893 | [0,1,2,1,1,8,1,1,14,1,1,20,1,1,26,1,1,32,1,1,14] |
| -○○○●● | -0.3 | ○●●○●●●●●●○○○○○○○○○○○○○○○○○●○●●●○●●●●●●●●●●●●●●●○○○○○○○○●○○○○○●●●○○○○○○○○○●●●●●●○●○○○●●○●○●●●●●●●●●●●●●●●●●●●●●●○●○●●●●○●●●●●●○● | 0.7408182206817179 | [0,1,2,1,6,17,1,1,3,1,15,8,1,5,3,9,6,1,1,3,2,1,1,1,22,1,1,1,4,1,6,1,2] |
| -○○○● | -0.2857142857142857 | ○●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.7514772930744776 | [0,1,3,42,17,1,1,24,40] |
| -○○○●○ | -0.2727272727272727 | ○●●●○○○○○●●●○●○○○●○●●●○○○○○●○○○●○○○○○●○●○○○●○○○○○○○○○○○○○○●●●●○●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●○●○○○○○○○○●○○○○○○○○○ | 0.7613003866968738 | [0,1,3,5,3,1,1,3,1,1,3,5,1,3,1,5,1,1,1,3,1,14,4,1,5,25,1,1,13,1,1,8,1,10] |
| -○○○ | -0.25 | ○●●●○●○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○ | 0.7788007830714049 | [0,1,3,1,1,11,1,1,19,1,1,27,1,1,35,1,1,23] |
| -○○○○● | -0.2222222222222222 | ○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●● | 0.8007374029164 | [0,1,4,54,22,1,1,31,15] |
| -○○○○ | -0.2 | ○●●●●○●○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.8187307530779817 | [0,1,4,1,1,14,1,1,24,1,1,34,1,1,44] |
| -○○○○○ | -0.1666666666666667 | ○●●●●●○●○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●● | 0.8464817248906111 | [0,1,5,1,1,17,1,1,29,1,1,41,1,1,28] |
| ○○○○○ | 0.1666666666666667 | ●○○○○○●○●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.18136041286565 | [1,5,1,1,17,1,1,29,1,1,41,1,1,28] |
| ○○○○ | 0.2 | ●○○○○●○●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.22140275816017 | [1,4,1,1,14,1,1,24,1,1,34,1,1,44] |
| ○○○○● | 0.2222222222222222 | ●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○ | 1.248848869002319 | [1,4,54,22,1,1,31,15] |
| ○○○ | 0.25 | ●○○○●○●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●● | 1.284025416687741 | [1,3,1,1,11,1,1,19,1,1,27,1,1,35,1,1,23] |
| ○○○●○ | 0.2727272727272727 | ●○○○●●●●●○○○●○●●●○●○○○●●●●●○●●●○●●●●●○●○●●●○●●●●●●●●●●●●●●○○○○●○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○●○●●●●●●●●○●●●●●●●●● | 1.313541957253949 | [1,3,5,3,1,1,3,1,1,3,5,1,3,1,5,1,1,1,3,1,14,4,1,5,25,1,1,13,1,1,8,1,10] |
| ○○○● | 0.2857142857142857 | ●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.330712197448781 | [1,3,42,17,1,1,24,40] |
| ○○○●● | 0.3 | ●○○●○○○○○○●●●●●●●●●●●●●●●●●○●○○○●○○○○○○○○○○○○○○○●●●●●●●●○●●●●●○○○●●●●●●●●●○○○○○○●○●●●○○●○●○○○○○○○○○○○○○○○○○○○○○○●○●○○○○●○○○○○○●○ | 1.349858807576003 | [1,2,1,6,17,1,1,3,1,15,8,1,5,3,9,6,1,1,3,2,1,1,1,22,1,1,1,4,1,6,1,2] |
| ○○ | 0.3333333333333333 | ●○○●○●●●●●●●●○●○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○ | 1.39561242508609 | [1,2,1,1,8,1,1,14,1,1,20,1,1,26,1,1,32,1,1,14] |
| ○○●○○ | 0.3636363636363636 | ●○○●●●○●○○○●●●●●●○○●●●●●●●●●●●●●●●●●●○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.438551009577261 | [1,2,3,1,1,3,6,2,18,8,84] |
| ○○●○ | 0.375 | ●○○●●●●●○○○○○○○○○○○○○○○○○○●●○●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.454991414622036 | [1,2,5,18,2,1,5,1,94] |
| ○○●○● | 0.3846153846153846 | ●○○●●●●●●●○●○○●○○●○○●○○○○○○●○●○●○○○○○○○○○●●●●●●●●○●○○○●○○○○○○○○○○●●○○○○○●●●●●●●●●●○○●○○○●○○●○○○○○○●●●●○●●●●○●●○●●○●●●●●●●●●●●●●● | 1.469049193849017 | [1,2,7,1,1,2,1,2,1,2,1,6,1,1,1,1,1,9,8,1,1,3,1,10,2,5,10,2,1,3,1,2,1,6,4,1,4,1,2,1,2,1,15] |
| ○○● | 0.4 | ●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.491824697647223 | [1,2,30,12,1,1,17,65] |
| ○○●●○ | 0.4166666666666667 | ●○●○○○○○○○○○○○○○○●●●○○●○●○●○○●●●●●○○○○○●○●○●○○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○●○●●●● | 1.516896796388213 | [1,1,1,14,3,2,1,1,1,1,1,2,5,5,1,1,1,1,1,2,4,69,2,1,1,1,5] |
| ○○●● | 0.4285714285714286 | ●○●○○○○○○●○●○○●●○●●○●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●● | 1.53506300925521 | [1,1,1,6,1,1,1,2,2,1,2,1,3,1,56,1,4,1,1,31,1,1,9] |
| ○○●●● | 0.4444444444444444 | ●○●○○○●○○●●●○●●●●●●●●○○○○○○○○○○○○○○○○●●●○○○●●○○○○●○○○●○●●●○○○○○○○●●●●●●●●●○○○○○○○○○●○●○○●●●●●●○○○●●●●●●●●●●●●●●●○●○●○●○○○○●○○○○● | 1.559623497606781 | [1,1,1,3,1,2,3,1,8,16,3,3,2,4,1,3,1,1,3,7,9,9,1,1,1,2,6,3,15,1,1,1,1,1,1,4,1,4,2] |
| ○ | 0.5 | ●○●○●●●●●○●○○○○○○○○○●○●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●●●●● | 1.648721270700128 | [1,1,1,1,5,1,1,9,1,1,13,1,1,17,1,1,21,1,1,25,1,1,23] |
| ○●○○○ | 0.5555555555555556 | ●○●●○●●●●●●●●○○○○○○○○○○○○○○○●○●○○●●●●○●●●●●●●●○●●●●○●●●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 1.742908998633458 | [1,1,2,1,8,15,1,1,1,2,4,1,8,1,4,1,11,1,65] |
| ○●○○ | 0.5714285714285714 | ●○●●●○○●○○○●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●○○○○○○○○○○○●○●○○●○○○●○○○○○○●●●○●●●○○●●●●●●○●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○ | 1.770794952435155 | [1,1,3,2,1,3,11,26,1,1,2,11,1,1,1,2,1,3,1,6,3,1,3,2,6,1,22,12] |
| ○●○○● | 0.5833333333333333 | ●○●●●○●●●●○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○○○○○●●○○○●●○○○○○●●●●●●●●●●○○○○○○○○○○○○○○○ | 1.792001825655756 | [1,1,3,1,4,4,1,34,4,29,2,7,2,3,2,5,10,16] |
| ○●○ | 0.6 | ●○●●●●○●○●○●●●●○○○○○○●○●●●●○○●●●●○●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○●●●●●●●●●○●●●●●●●●●●●○●○○○○○●●○ | 1.822118800390509 | [1,1,4,1,1,1,1,1,4,6,1,1,4,2,4,1,12,1,1,46,2,1,9,1,11,1,1,5,2,2] |
| ○●○●○ | 0.6153846153846154 | ●○●●●●●○●●○○○○○○●●○○○●○○●○●○○○○○○●●○●●●○○●●○○●○●○●●●●●●●●●●●●●●●●●○○●●○○○●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●●●○●○●●●●●●●●●●●●●● | 1.850368142769234 | [1,1,5,1,2,6,2,3,1,2,1,1,1,6,2,1,3,2,2,2,1,1,1,1,17,2,2,3,2,31,1,1,3,1,1,1,15] |
| ○●○● | 0.625 | ●○●●●●●●○●○○●●●○●○○○●○●○○○●○●○○○○○●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○○○○○○ | 1.868245957432222 | [1,1,6,1,1,2,3,1,1,3,1,1,1,3,1,1,1,5,6,77,1,11] |
| ○●○●● | 0.6363636363636364 | ●○●●●●●●●●○○○○○○○○○○○○○○○○○●●●○○○○○○○○●○●●○○●●○○○●●●●●●●●●●●●●●●●●●●○●●●●●●●●●●●○○●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 1.889597108730308 | [1,1,8,17,3,8,1,1,2,2,2,3,19,1,11,2,6,41] |
| ○● | 0.6666666666666667 | ●○●●●●●●●●●●●●●●●●●●○○○○○○○●○●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○ | 1.947734041054676 | [1,1,18,7,1,1,10,54,16,1,1,18] |
| ○●●○○ | 0.7 | ●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○●●○○○○○○○○○○○○○○●○○○○○○○○○●○○○○○○○●○○○○○○○○○○●○○○○● | 2.013752707470477 | [2,72,1,2,2,14,1,9,1,7,1,10,1,4,2] |
| ○●●○ | 0.7142857142857143 | ●●○○○○○○○○○○○○○○○○○○○○○○○●●○○●●●●●●●●○●●●○○○○○●●●○○○○●●●●○●●○●○○○○●●●●○●○○●●○○○○○●○○●○○●●●○○○○●○○●○○○○○○●●○○○○○○○○○○○○○○○○○○○○○○ | 2.042727070266142 | [2,23,2,2,8,1,3,5,3,4,4,1,2,1,1,4,4,1,1,2,2,5,1,2,1,2,3,4,1,2,1,6,2,23] |
| ○●●○● | 0.7272727272727273 | ●●○○○○○○○○○○○○○○●●○○●●●●●●●●●●●●○○○○○○○○○○●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 2.069429007152003 | [2,14,2,2,12,10,1,3,83] |
| ○●● | 0.75 | ●●○○○○○○○○●○●●●●○●●●●○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●○○○○○●●●○○●●●●●●●●●●●●●●●●●●●●●○●○○○●●●●●●○ | 2.117000016612675 | [2,8,1,1,4,1,4,1,1,59,1,1,1,5,3,2,21,1,1,3,6,2] |
| ○●●●○ | 0.7777777777777778 | ●●○○○○○●○●○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●○●○●●○●○○○●○○○●●●●○○○○○○○●○○○○○●○●●○●○○○●●●●●●●○○○●●●○●●●●●●●●●●●●●●●●●●●○○●○○○○○○○ | 2.176629931716248 | [2,5,1,1,1,21,14,1,1,1,2,1,1,3,1,3,4,7,1,5,1,1,2,1,1,3,7,3,3,1,19,2,1,8] |
| ○●●● | 0.8 | ●●○○○○●●○○○●●●○●○●●○○○●○○○○○○○●○●○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 2.225540928492471 | [2,4,2,3,3,1,1,1,2,3,1,7,1,1,1,3,1,92] |
| ○●●●● | 0.8333333333333333 | ●●○○○●●●○○○○○○○○○●○○○○○○○○○○○○○○○○○●○○○○○○○●○○●●●●●●●●●●●●○●●●●○●○●●○●●●○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○●●○●●●●○○○●○● | 2.300975890892825 | [2,3,3,9,1,17,1,7,1,2,12,1,4,1,1,1,2,1,3,12,28,1,1,1,2,1,4,3,1,1,2] |
| 1 | 1.0 | ●●○●●○●○○○○●○●●●●●●○●○○○○○○○○●○●●●●●●●●●●○●○○○○○○○○○○○○●○●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○●○●●●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○○ | 2.718281828459045 | [2,1,2,1,1,4,1,1,6,1,1,8,1,1,10,1,1,12,1,1,14,1,1,16,1,1,18,1,1,18] |
| ●○○○○ | 1.2 | ●●●○○○●●●●●●●●○○○○○○○○○○○○○●○●●●○○●○●●●○●●●●●●○○○○○○○○○○○○○●○●○○●○○○○○○○○○●●●●●○○○○●●●○●○○○○○○○○○○○○○○○○○○○○○○●●●●●●●○○○○○○○●○○○ | 3.320116922736547 | [3,3,8,13,1,1,3,2,1,1,3,1,6,13,1,1,1,2,1,9,5,4,3,1,1,22,7,7,1,4] |
| ●○○○ | 1.25 | ●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●○○●○●●○●●○○○○●●○●○●●●●●●●○○○○○○○○●●●●●●●●●○○○○○○○○○○○○○○○○○○○○●●○●○○○●○○○○○○○●●○●●●●●●●●●●●●●●●●●● | 3.490342957461841 | [3,2,25,2,1,1,2,1,2,4,2,1,1,1,7,8,9,20,2,1,1,3,1,7,2,1,19] |
| ●○○○● | 1.285714285714286 | ●●●○●○●○●○○●○●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 3.61725078521743 | [3,1,1,1,1,1,1,2,1,1,4,65,47] |
| ●○○ | 1.333333333333333 | ●●●○●●●○●●●●●○●○○○○○○○○○○○○○○●●●●●○○○○○●○○○○○○○○○○○○○○○○○○○○●○○●●●○○○●●●○●○●●●○●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 3.793667894683178 | [3,1,3,1,5,1,1,14,5,5,1,20,1,2,3,3,3,1,1,1,3,1,1,2,47] |
| ●○○●○ | 1.375 | ●●●○●●●●●●●●●●●●●●●●●●●●●○○○●○○○○○●●○●○○○○●○○○○●○○○○○●●○●●●●●○●●○○○○○○○○○●●○●●●●●○●●●●●●●●●●○○○○○●●●●○○●●●○●●●●●○●○●○○○○○○○○○○○○ | 3.955076722920577 | [3,1,21,3,1,5,2,1,1,4,1,4,1,5,2,1,5,1,2,9,2,1,5,1,10,5,4,2,3,1,5,1,1,1,1,13] |
| ●○○● | 1.4 | ●●●●○○○○○○○○○○○○○○○○○○●●●●●●●●○●○●○●●●●●●●●●●●●●●●●●●○●●○○○○○○○○●●●●●●●●●●●●●○●○○○●○●●○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 4.055199966844675 | [4,18,8,1,1,1,1,1,18,1,2,8,13,1,1,3,1,1,2,4,1,38] |
| ●○○●● | 1.428571428571429 | ●●●●○○○○○●○○○●○○●○○○○○○○○○○○●○○○●●●○●●●●●●●●●●●●○●●●●●●●●●●○●○○●○○○○○○○●●●●●●●●●●○○○●○●●●●●●○●●○○○○○○○●○●○○○○○●○●●●●○●●●●○●○●●●● | 4.172733883598096 | [4,5,1,3,1,2,1,11,1,3,3,1,12,1,10,1,1,2,1,7,10,3,1,1,6,1,2,7,1,1,1,5,1,1,4,1,4,1,1,1,5] |
| ●○ | 1.5 | ●●●●○○●●●●●●●●●●●●●○○○○○○●○●●●●●●○●●●●●●○●●●●●●●●●●●●●●●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 4.481689070338049 | [4,2,13,6,1,1,6,1,6,1,20,1,67] |
| ●○●○○ | 1.571428571428571 | ●●●●○●●●●○○●○○○●●●●●●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●● | 4.813519741131115 | [4,1,4,2,1,3,6,1,74,5,28] |
| ●○●○ | 1.6 | ●●●●○●●●●●●●●●●●●●●●●●●●●○○○●●○○○●●●●○○○○●●●●●●●●●●●●●●●●●●●●●●●●○●○○●●○○○○○○○○○●●●●●●○●○●●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 4.953032424395115 | [4,1,20,3,2,3,4,4,24,1,1,2,2,9,6,1,1,1,4,2,34] |
| ●○●○● | 1.625 | ●●●●●○○○○○○○○○○○○●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●●●●●●●○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●●●●○○○○●○○○○○○○○●○○○○○○○ | 5.078419037180081 | [5,12,1,3,30,1,10,2,38,1,4,4,1,8,1,8] |
| ●○● | 1.666666666666667 | ●●●●●○○○●●○●○○○○○○○○●○○●●○●●○○○●●●●○○●●●●●●●●●●●●●●●●●●○○●○●●●●●●●●●●○○●●○●●●●○●●●●●○○○○○○○○○○○○○○○○○○○○○○○●●●●○○○○○○●●●●●●●●●●● | 5.294490050470029 | [5,3,2,1,1,8,1,2,2,1,2,3,4,2,18,2,1,1,10,2,2,1,4,1,5,23,4,6,12] |
| ●○●●○ | 1.714285714285714 | ●●●●●○●○○○○●●●●○○○○○○○○●○○○○○●●●●○○○○○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○○○○○●○○○○○○○○○●○○●●○○●○●●●●●●●●●●●● | 5.552707875605837 | [5,1,1,4,4,8,1,5,4,9,1,45,2,7,1,9,1,2,2,2,1,1,13] |
| ●○●● | 1.75 | ●●●●●○●●●○○○○○○○○○○○○○●●●○○○○○○○○○○○○○○○○○○○○○○○○○●○●○○○○○●○○○○○○○●●●●●●●●●●●●○●○○○○○○○●○○○●●○○○●○●●●●○●●●●○○○○○○○○○○○○○○○○○○○○○ | 5.75460267600573 | [5,1,3,13,3,25,1,1,1,5,1,7,12,1,1,7,1,3,2,3,1,1,4,1,4,22] |
| ●○●●● | 1.8 | ●●●●●●○○○○○○○○○○○○○○○○○○○○●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●●●●○○●○●●●●●○○○○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 6.049647464412946 | [6,20,7,24,9,2,1,1,5,9,45] |
| ● | 2.0 | ●●●●●●●○○●○●●●○○○○○○○○○○○○○○○○○○●●●●●○●○○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○●○●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 7.38905609893065 | [7,2,1,1,3,18,5,1,1,6,30,8,1,1,9,35] |
| ●●○○○ | 2.25 | ●●●●●●●●●○○●●●●●●●●●●●●●●●●●●●○●●●●●●●○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○●●●○○●○○○●●●●●●● | 9.487735836358523 | [9,2,19,1,7,1,1,1,69,2,3,2,1,3,8] |
| ●●○○ | 2.333333333333333 | ●●●●●●●●●●○○○●●●●○●●●●●●●●●●●●●●●○○●○○○●●●●●●●○○○○●●●●●●●●●●●●○○○●●○●●○●●●●●●●●●●●●●●●●●●●●●●●○●●●○●●●●●●●●●●●●●●○○○●○○○○●●○○●●○ | 10.31225850132577 | [10,3,4,1,15,2,1,3,7,4,12,3,2,1,2,1,23,1,3,1,14,3,1,4,2,2,2,2] |
| ●●○○● | 2.4 | ●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●●●○●●●○●○●●●●●●●●●●●●●●○●●●●●○●○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○● | 11.0231763806416 | [11,43,6,1,3,1,1,1,14,1,5,1,1,3,1,34,2] |
| ●●○ | 2.5 | ●●●●●●●●●●●●○○○○○●●○○○○○○○○○○○●○○○●●○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●●●○○○●○○○○○○○○ | 12.18249396070347 | [12,5,2,11,1,3,2,3,1,72,4,3,1,9] |
| ●●○●○ | 2.6 | ●●●●●●●●●●●●●○○●●●●●●○○●○●●●●●●○○●○●●○●●●●○○●●○●○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○●○○●●○○●●● | 13.46373803500169 | [13,2,6,2,1,1,6,2,1,1,2,1,4,2,2,1,1,3,55,12,1,2,2,2,4] |
| ●●○● | 2.666666666666667 | ●●●●●●●●●●●●●●○○●○●●●●○○●○○○○○○●○○○○○●○○○○○○○○○○○○○○○●●●●●○○○○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 14.3919160951499 | [14,2,1,1,4,2,1,6,1,5,1,15,5,5,1,65] |
| ●●○●● | 2.75 | ●●●●●●●●●●●●●●●○●○●●●○●●●●●●●●●●●●●●●●●●●●●○●●●●●●○○●○○○○○●●●○●●○●●●●●●●●●●●●●○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 15.64263188418817 | [15,1,1,1,3,1,21,1,6,2,1,5,3,1,2,1,13,4,47] |
| ●● | 3.0 | ●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○●○○●●●●○○○●○○○○○●○○●●●●●●●●●●●●●●●●○●○○○○○○○○○○○○○○○○●●○○○○○○○○○○○○○●●●●●●●●●●●●●●○○○○●●●●●●○○●○● | 20.08553692318767 | [20,11,1,2,4,3,1,5,1,2,16,1,1,16,2,13,14,4,6,2,1,1,2] |
| ●●●○○ | 3.333333333333333 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○●○●○○●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●○○○○○●●●●●●●●○●○○○○○○○○ | 28.03162489452613 | [28,31,1,1,1,1,1,2,1,37,1,5,8,1,1,9] |
| ●●●○ | 3.5 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○●○●○○○○○○○○○○○○○○○○○○○○○●●●○○○○○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 33.11545195864 | [33,8,1,1,1,21,3,5,56] |
| ●●●○● | 3.666666666666667 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○●●●●○○○○○○○○○○○○●○●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○●●○○○○○○●●●●●○○○○○○○ | 39.12128399815322 | [39,8,4,12,1,1,7,36,2,6,5,8] |
| ●●● | 4.0 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○●○○●●●●●●●●●●●●●●●●●●●●●○○○○●○●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 54.59815002768038 | [54,1,1,2,21,4,1,1,44] |
| ●●●●○ | 4.5 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○○ | 90.02564102564104 | [90,39] |
| ●●●● | 5.0 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 129.0 | [129] |
| ●●●●● | 6.0 | ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● | 129.0 | [129] |
