/* -*- coding: utf-8 -*- * * 2528.cc: No.2528 pop_(backfront or not) - yukicoder */ #include #include using namespace std; /* constant */ const int MAX_N = 2000; const int MAX_N2 = MAX_N * 2; const int MOD = 998244353; /* typedef */ template struct MI { int v; MI(): v() {} MI(int _v): v(_v % MOD) { if (v < 0) v += MOD; } MI(long long _v): v(_v % MOD) { if (v < 0) v += MOD; } explicit operator int() const { return v; } MI operator+(const MI m) const { return MI(v + m.v); } MI operator-(const MI m) const { return MI(v + MOD - m.v); } MI operator*(const MI m) const { return MI((long long)v * m.v); } MI &operator+=(const MI m) { return (*this = *this + m); } MI &operator-=(const MI m) { return (*this = *this - m); } MI &operator*=(const MI m) { return (*this = *this * m); } bool operator==(const MI m) const { return v == m.v; } bool operator!=(const MI m) const { return v != m.v; } MI pow(int n) const { // a^n % MOD MI pm = 1, a = *this; while (n > 0) { if (n & 1) pm *= a; a *= a; n >>= 1; } return pm; } MI inv() const { return pow(MOD - 2); } MI operator/(const MI m) const { return *this * m.inv(); } MI &operator/=(const MI m) { return (*this = *this / m); } }; using mi = MI; /* global variables */ mi inv2 = mi(2).inv(); mi dp[MAX_N2 + 1][MAX_N2 + 1]; /* subroutines */ mi nc2(int n) { return mi(n) * (n - 1) * inv2; } /* main */ int main() { int n; scanf("%d", &n); int n2 = n * 2; dp[0][0] = 1; for (int l = 2; l <= n2; l += 2) for (int i = 0, j = l - i; j >= 0; i++, j--) { if (i > 0 && j > 0) dp[i][j] += dp[i - 1][j - 1]; if (i >= 3) dp[i][j] += dp[i - 2][j] * nc2(i - 1); if (j >= 3) dp[i][j] += dp[i][j - 2] * nc2(j - 1); if (i >= 2 && j >= 2) dp[i][j] += dp[i - 1][j - 1] * (mi(i - 1) * (j - 1)); } for (int i = 0; i <= n2; i++) printf("%d\n", (int)dp[i][n2 - i]); return 0; }