#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long int
#define vv vector<long long>
#define mpp map<long long,long long>
#define ss set<long long>
#define vp vector<pair<long long, long long>>
#define MOD 1000000007
#define YES cout<<"YES"<<endl
#define NO cout<<"NO"<<endl
#define all_v v.begin(),v.end()
#define all_a a.begin(),a.end()
#define all_n for(int i=0;i<n;i++)
void requisite(){
ios::sync_with_stdio(false);
cin.tie(nullptr);cout.tie(nullptr);
}
int main() {
requisite();
ll t;
cin>>t;
while (t--){
ll n;
cin>>n;
vv v(n);
v[0]=6;
v[1]=10;
v[2]=15;
for (int i = 3; i < n; ++i) {
ll j=v[i-1]+1;
while (true){
if (gcd(v[i-1],j)>1 and ((j%2==0 and j%5==0) or (j%2==0 and j%3==0)))
break;
else
j++;
}
v[i]=j;
}
for(auto it:v){
cout<<it<<" ";
}
}
return 0;
}