#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i).val() << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using mint = modint998244353; using vm = vector; vector divisor(lint n) { vector v; for (lint 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 main() { lint N, M; cin >> N >> M; vi v(N); vin(v); mint a=0, b=0, c=0; lint x, y, z; vm w(M+1); rep(i, N) { vi t = divisor(v[i]); rep(j, t.size()) { w[t[j]] *= 2; w[t[j]]++; } a *= 2; a++; // vout(w); } for (int i = M; i > 0; i--) { repx(j, 2, M+1) { if (i*j > M) break; w[i] -= w[i*j]; } } repx(i, 1, M+1) { cout << w[i].val() << endl; } }