import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
int n=scn.nextInt();
while (n--!=0) {
int num = scn.nextInt(), tot = 0;
for (int i = 2; i <= num; i++) {
tot += ((i - 1) * i * (i + 1));
}
System.out.println(tot);
}
}
/*
題目:[C_CH19-易] 解方程
作者:1010
時間:西元 2016 年 7 月 */
}