#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int OO = 1e9+7 ,N=1e6+5;
int dx[] = { 0, 0, 1, -1, 1, -1, 1, -1 }; // dir array
int dy[] = { 1, -1, 0, 0, 1, -1, -1, 1 };
void File(){
#ifndef ONLINE_JUDGE
freopen("Input.txt", "r", stdin);
freopen("Output.txt", "w", stdout);
#endif
}
vector<int>getdiv(int n){
vector<int>v;
for(int i=1;i*i<=n;i++){
if(n%i==0){
v.push_back(i);
if(i*i!=n)v.push_back(n/i);
}
}
sort(v.begin(),v.end());
return v;
}
int solve(){
ll n;cin>>n;
vector<int>a(n+1);
map<int,ll>sum;
for(int i=1;i<=n;i++){
cin>>a[i];
}
ll ans=0;
for(ll i=1;i<=n;i++){
for(auto j:getdiv(a[i])){
ans += sum[j] * (n-i+1) ;
}
sum[a[i]]+=i;
}
cout<<ans<<'\n';
return 0;
}
int main() {
File();
ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
int t,i=1;cin>>t;
while(t--)
solve();
}
//Solve on paper first
//Overflooooooow
//Reverse Thinking
//If there's an equation, transform it into an easy one
//READ ALL PROBLEMS
//Verify Your thought before Coding
Copy