我有一个需要以 BigInteger 格式编写的方程式。它需要在一个 for 循环中。这是我到目前为止所拥有的,但我不确定如何使用 BigInteger。这是写在 for 循环中的等式: 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;