#![allow(unused_imports)] use std::cmp::*; use std::collections::*; use std::io::Write; use std::ops::Bound::*; #[allow(unused_macros)] macro_rules! debug { ($($e:expr),*) => { #[cfg(debug_assertions)] $({ let (e, mut err) = (stringify!($e), std::io::stderr()); writeln!(err, "{} = {:?}", e, $e).unwrap() })* }; } fn main() { let v = read_vec::(); let (n, m) = (v[0], v[1]); println!("{}", n); for x in 2..m + 1 { println!("{}", solve(x, n)); } for i in 1..16 { debug!(solve(4, i)); } } fn solve(x: i64, n: i64) -> i64 { let mut n = n; if n <= x { return 0; } n -= x; let min_n = n / x; let mid_n = min_n + 1; let max_n = min_n + 2; let res = n % x; let big_int = 1000000000 + 7; if res == x - 1 { // debug!(mid_n, max_n, res); (mid_n * pow_m(max_n, res, big_int)) % big_int } else { // debug!(mid_n, max_n, res); (((min_n * pow_m(max_n, res + 1, big_int)) % big_int) * pow_m(mid_n, x - (res + 2), big_int)) % big_int } } fn read() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().parse().ok().unwrap() } fn read_vec() -> Vec { read::() .split_whitespace() .map(|e| e.parse().ok().unwrap()) .collect() } fn pow_m(n: i64, mut p: i64, m: i64) -> i64 { let mut r = n; let mut ret = 1; while p > 0 { if p % 2 == 0 { r = r * r % m; p /= 2; } else { ret = ret * r % m; p -= 1; } } ret }