#include <cstdio>
#include <cstdint>
#include <stack>

// using u64 = uint64_t;
 using u64 = unsigned long long int;

u64 bgcd(u64 x, u64 y){
  if(x == 0) return y;
  if(y == 0) return x;
  int bx = __builtin_ctzll(x);
  int by = __builtin_ctzll(y);
  int k = (bx < by) ? bx : by;
  x >>= bx;
  y >>= by;
  while(x!=y){
    if(x < y){
      y -= x;
      y >>= __builtin_ctzll(y);
    }
    else {
      x -= y;
      x >>= __builtin_ctzll(x);
    }
  }
  return x << k;
}


struct u64GCDMonoid {
  using element_type = u64;
  static u64 op(u64 x, u64 y) {
    return bgcd(x, y);
  }
  static constexpr u64 id = 0;
};

template <typename M>
struct swag {
  using T = typename M::element_type;
  std::stack<T> l, r, cl, cr;
  swag(){
    cl.push(M::id);
    cr.push(M::id);
  }
  void push_back(const T &x){ r.push(x); cr.push(M::op(cr.top(), x)); };
  void pop_front(){
    if(l.empty()){
      while(!r.empty()){
        l.push(r.top());
        r.pop();
        cr.pop();
        cl.push(M::op(cl.top(), l.top()));
      }
    }
    l.pop();
    cl.pop();
  }
  T fold() const {
    return M::op(cl.top(), cr.top());
  }
};

int n;
u64 A[500001];

int main(){
  scanf("%d", &n);
  for(int i = 0; i < n; i++) scanf("%llu", A+i);
  
  swag<u64GCDMonoid> s;
  u64 ans = 0;
  int r = 0;
  for(int l = 0; l <= r; l++){
    for(; r <= n; r++){
      if(s.fold() == 1){
// printf("(%d, %d) ", l, r-1);
        ans += n - r + 1;
        break;
      }
      s.push_back(A[r]);
    }
    s.pop_front();
  }

  printf("%llu\n", ans);
  return 0;
}