Package de.tilman_neumann.jml.smooth
Class SHCNEntry
- java.lang.Object
-
- de.tilman_neumann.jml.smooth.SHCNEntry
-
public class SHCNEntry extends Object
A superior highly composite number (SHCN), 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 SHCNEntry
computeSHCN(double x)
Compute SHCN(x), where x is a positive real number.ArrayList<Integer>
getExponents()
int
getExponentSum()
ArrayList<BigInteger>
getPrimes()
BigInteger
getSHCN()
double
getX()
-
-
-
Method Detail
-
computeSHCN
public static SHCNEntry computeSHCN(double x)
Compute SHCN(x), where x is a positive real number.- Parameters:
x
-- Returns:
- SHCN(x)
-
getX
public double getX()
-
getSHCN
public BigInteger getSHCN()
-
getExponentSum
public int getExponentSum()
-
getPrimes
public ArrayList<BigInteger> getPrimes()
-
-