Kids Seating

题意翻译

## Content 有 $t$ 组询问,每组询问给定一个数 $n$,试构造出一个长度为 $n$ 的数列 $\{a_i\}_{i=1}^n$,使得: - $\forall i\in[1,n],1\leqslant a_i\leqslant 4n$。 - $\forall1\leqslant i,j\leqslant n,\gcd(a_i,a_j)\neq1,a_i\nmid a_j,a_j\nmid a_i$。 **数据范围:$1\leqslant t,n\leqslant 100$。**

题目描述

Today the kindergarten has a new group of $ n $ kids who need to be seated at the dinner table. The chairs at the table are numbered from $ 1 $ to $ 4n $ . Two kids can't sit on the same chair. It is known that two kids who sit on chairs with numbers $ a $ and $ b $ ( $ a \neq b $ ) will indulge if: 1. $ gcd(a, b) = 1 $ or, 2. $ a $ divides $ b $ or $ b $ divides $ a $ . $ gcd(a, b) $ — the maximum number $ x $ such that $ a $ is divisible by $ x $ and $ b $ is divisible by $ x $ . For example, if $ n=3 $ and the kids sit on chairs with numbers $ 2 $ , $ 3 $ , $ 4 $ , then they will indulge since $ 4 $ is divided by $ 2 $ and $ gcd(2, 3) = 1 $ . If kids sit on chairs with numbers $ 4 $ , $ 6 $ , $ 10 $ , then they will not indulge. The teacher really doesn't want the mess at the table, so she wants to seat the kids so there are no $ 2 $ of the kid that can indulge. More formally, she wants no pair of chairs $ a $ and $ b $ that the kids occupy to fulfill the condition above. Since the teacher is very busy with the entertainment of the kids, she asked you to solve this problem.

输入输出格式

输入格式


The first line contains one integer $ t $ ( $ 1 \leq t \leq 100 $ ) — the number of test cases. Then $ t $ test cases follow. Each test case consists of one line containing an integer $ n $ ( $ 1 \leq n \leq 100 $ ) — the number of kids.

输出格式


Output $ t $ lines, which contain $ n $ distinct integers from $ 1 $ to $ 4n $ — the numbers of chairs that the kids should occupy in the corresponding test case. If there are multiple answers, print any of them. You can print $ n $ numbers in any order.

输入输出样例

输入样例 #1

3
2
3
4

输出样例 #1

6 4
4 6 10
14 10 12 8