#include using namespace std; int n; int main() { ios::sync_with_stdio(0); cin.tie(0), cout.tie(0); int t; cin >> t; while(t--) { long long n; cin >> n; cout << (n * (n - 1) / 2 + n) * 2 << '\n'; } } //