Package de.tilman_neumann.jml.smooth
Class CANEntry
- java.lang.Object
-
- de.tilman_neumann.jml.smooth.CANEntry
-
public class CANEntry extends Object
A colossally abundant number (CAN), together with some information that was necessary to compute it.- Author:
- Tilman Neumann
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CANEntrycomputeCAN(double epsilon)Compute CAN(epsilon), where epsilon is a positive real number.BigIntegergetCAN()doublegetEpsilon()ArrayList<Integer>getExponents()intgetExponentSum()ArrayList<BigInteger>getPrimes()static voidmain(String[] args)Test.
-
-
-
Method Detail
-
computeCAN
public static CANEntry computeCAN(double epsilon)
Compute CAN(epsilon), where epsilon is a positive real number.- Parameters:
epsilon-- Returns:
- CAN(epsilon)
-
getEpsilon
public double getEpsilon()
-
getCAN
public BigInteger getCAN()
-
getExponentSum
public int getExponentSum()
-
getPrimes
public ArrayList<BigInteger> getPrimes()
-
main
public static void main(String[] args)
Test.- Parameters:
args- ignored
-
-