Class SHCNEntry

java.lang.Object
de.tilman_neumann.jml.smooth.SHCNEntry

public class SHCNEntry
extends java.lang.Object
A superior highly composite number (SHCN), together with some information that was necessary to compute it.
  • Method Summary

    Modifier and Type Method Description
    static SHCNEntry computeSHCN​(double x)
    Compute SHCN(x), where x is a positive real number.
    java.util.ArrayList<java.lang.Integer> getExponents()  
    int getExponentSum()  
    java.util.ArrayList<java.math.BigInteger> getPrimes()  
    java.math.BigInteger getSHCN()  
    double getX()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • 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 java.math.BigInteger getSHCN()
    • getExponentSum

      public int getExponentSum()
    • getPrimes

      public java.util.ArrayList<java.math.BigInteger> getPrimes()
    • getExponents

      public java.util.ArrayList<java.lang.Integer> getExponents()