Package de.tilman_neumann.jml.smooth
Class CANEntry
java.lang.Object
de.tilman_neumann.jml.smooth.CANEntry
public class CANEntry
extends java.lang.Object
A colossally abundant number (CAN), together with some information that was necessary to compute it.
-
Method Summary
Modifier and Type Method Description static CANEntry
computeCAN(double epsilon)
Compute CAN(epsilon), where epsilon is a positive real number.java.math.BigInteger
getCAN()
double
getEpsilon()
java.util.ArrayList<java.lang.Integer>
getExponents()
int
getExponentSum()
java.util.ArrayList<java.math.BigInteger>
getPrimes()
static void
main(java.lang.String[] args)
Test.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
computeCAN
Compute CAN(epsilon), where epsilon is a positive real number.- Parameters:
epsilon
-- Returns:
- CAN(epsilon)
-
getEpsilon
public double getEpsilon() -
getCAN
public java.math.BigInteger getCAN() -
getExponentSum
public int getExponentSum() -
getPrimes
public java.util.ArrayList<java.math.BigInteger> getPrimes() -
getExponents
public java.util.ArrayList<java.lang.Integer> getExponents() -
main
public static void main(java.lang.String[] args)Test.- Parameters:
args
- ignored
-