#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #if __has_include() #include using namespace atcoder; #endif #define GET_MACRO(_1, _2, _3, NAME, ...) NAME #define _rep(i, n) _rep2(i, 0, n) #define _rep2(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() using i64 = long long; template bool chmin(T& a, const U& b) { return (b < a) ? (a = b, true) : false; } template bool chmax(T& a, const U& b) { return (b > a) ? (a = b, true) : false; } inline void YesNo(bool f = 0, string yes = "Yes", string no = "No") { std::cout << (f ? yes : no) << "\n"; } namespace io { template istream& operator>>(istream& i, vector& v) { rep(j, v.size()) i >> v[j]; return i; } template string join(vector& v) { stringstream s; rep(i, v.size()) s << ' ' << v[i]; return s.str().substr(1); } template ostream& operator<<(ostream& o, vector& v) { if (v.size()) o << join(v); return o; } template string join(vector>& vv) { string s = "\n"; rep(i, vv.size()) s += join(vv[i]) + "\n"; return s; } template ostream& operator<<(ostream& o, vector>& vv) { if (vv.size()) o << join(vv); return o; } template istream& operator>>(istream& i, pair& p) { i >> p.first >> p.second; return i; } template ostream& operator<<(ostream& o, pair& p) { o << p.first << " " << p.second; return o; } void print() { cout << "\n"; } template void print(Head&& head, Tail&&... tail) { cout << head << " "; print(std::forward(tail)...); } void in() {} template void in(Head&& head, Tail&&... tail) { cin >> head; in(std::forward(tail)...); } } // namespace io using namespace io; namespace useful { long long modpow(long long a, long long b, long long mod) { long long res = 1; while (b) { if (b & 1) res *= a, res %= mod; a *= a; a %= mod; b >>= 1; } return res; } bool is_pow2(long long x) { return x > 0 && (x & (x - 1)) == 0; } template void rearrange(vector& a, vector& p) { vector b = a; for (int i = 0; i < int(a.size()); i++) { a[i] = b[p[i]]; } return; } } // namespace useful using namespace useful; vector euler_phi_table(int n) { vector euler(n + 1); for (int i = 0; i <= n; i++) { euler[i] = i; } for (int i = 2; i <= n; i++) { if (euler[i] == i) { for (int j = i; j <= n; j += i) { euler[j] = euler[j] / i * (i - 1); } } } return euler; } vector table; i64 dp[10000010]; void solve() { int n; in(n); cout << dp[n] << "\n"; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int t; cin >> t; table = euler_phi_table(10000005); table[1] = 0; for (i64 i = 2; i <= 10000005; i++) { dp[i] = dp[i - 1] + (i - 1) * 2 - table[i]; } while (t--) solve(); }