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;