#include <iostream>
#include <cmath>
using namespace std;
int main(){
int n;
while(cin >> n, n){
for(int i = 1; i <= n; i ++ ){
for(int j = 1; j <= n; j ++ ){
if(i == j) cout << int(pow(4, i - 1)) << ' ';
else cout << int((int(pow(4, (i - 1))) / (pow(2, i - j)))) << ' ';
}
cout << endl;
}
cout << endl;
}
return 0;
}