#include<iostream>
#include<bits/stdc++.h>
typedef long long ll;
typedef long double ld;
const int mod=1e9+7;
const ll INF=1e18;
const double pi=3.14159265358979323846;
#define F first
#define S second
#define all(v) v.begin(),v.end()
#define pb push_back
#define Go ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
using namespace std;
ll a[10][10];
int main()
{
Go
int t; cin >> t;
while(t--)
{
ll n; cin >> n;
ll ans=(n*(n+1))/2 + (n*n*(n-1))/2;
cout << ans << '\n';
}
return 0;
}
Copy