简体   繁体   中英

How do you implement the BigInteger class for your own equation?

I have an equation that I need to write in BigInteger format. It needs to be in a for loop. This is what I have so far, but I'm not sure how to use BigInteger with it. This is the equation written to be in the for loop: i*(i+1)*(2*i+1)*(3*i*i+3*i-1)/30

public static BigInteger[] nthtetranum(int n) //This is the method using the simple formula for tetra number.
{

    BigInteger[] nth = new BigInteger[n];

    for(int i = 0; i <nth.length; i++)
    {
        //nth[i] = i*(i+1)*(2*i+1)*(3*i*i+3*i-1)/30;
        nth[i] = 

    }
    return nth;
BigInteger two = new BigInteger("2");
BigInteger three = new BigInteger("3");
BigInteger I = new BigInteger(""+i); // "I" is a bigint version of "i"
nth[i] = I
    .multiply(I.add(BigInteger.ONE))
    .multiply(I.multiply(two).add(BigInteger.ONE))
    .multiply(I.multiply(I).multiply(three).add(I.multiply(three)).subtract(BigInteger.ONE))
    .divide(new BigInteger("30"));

This expression is ugly, but it would not overflow even for "borderline" values of i .

Um. The normal way?

nth[i] = BigInteger.valueOf(i)
  .multiply(BigInteger.valueOf(i+1))
  .multiply(BigInteger.valueOf(2*i + 1))
  .multiply(BigInteger.valueOf(3L*i*i + 3*i - 1)) // should fit in a long
  .divide(BigInteger.valueOf(30));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM