Consider all ordered partitions of a positive integer n into m positive summands: n=a_1+a_2+…+a_m. Let f(a_1,a_2,…,a_m) be the number of different integers among a_1,a_2,…,a_m. Find the sum of f(a_1,a_2,…,a_m) over all ordered partitions of the number n, and print it modulo 998,244,353.
Two ordered partitions a_1+a_2+…+a_m=n and b_1+b_2+…+b_m=n are considered different if there is an index i∈1,2,…,m such that a_i=b_i.