#include using namespace std; using ll = long long; #define ALL(obj) (obj).begin(),(obj).end() template using priority_queue_reverse = priority_queue,greater>; constexpr long long MOD = 1'000'000'000LL + 7; //' constexpr long long MOD2 = 998244353; constexpr long long HIGHINF = (long long)1e18; constexpr long long LOWINF = (long long)1e15; constexpr long double PI = 3.1415926535897932384626433L; template vector multivector(size_t N,T init){return vector(N,init);} template auto multivector(size_t N,T... t){return vector(N,multivector(t...));} template void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}} template ostream &operator<<(ostream &o, const map&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;} template ostream &operator<<(ostream &o, const set&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template ostream &operator<<(ostream &o, const multiset&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template ostream &operator<<(ostream &o, const vector&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template ostream &operator<<(ostream &o, const pair&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} void print(void) {cout << endl;} template void print(Head&& head) {cout << head;print();} template void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward(tail)...);} template void chmax(T& a, const T b){a=max(a,b);} template void chmin(T& a, const T b){a=min(a,b);} vector split(const string &str, const char delemiter) {vector res;stringstream ss(str);string buffer; while( getline(ss, buffer, delemiter) ) res.push_back(buffer); return res;} int msb(int x) {return x?31-__builtin_clz(x):-1;} void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;} void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;} void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;} /** * @url * @est */ int main() { int N,M; cin >> N >> M; vector ans(N+1,0); for(int a=0;a*a<=N && a<=M;++a) { for(int b=a;a*a+a*b+b*b<=N && b<=M;++b) { for(int c=b;a*a+a*b+a*c+b*b+b*c+c*c<=N && c<=M;++c) { for(int d=c;a*a+a*b+a*c+a*d+b*b+b*c+b*d+c*c+c*d+d*d<=N && d<=M;++d) { int s=a*a+a*b+a*c+a*d+b*b+b*c+b*d+c*c+c*d+d*d; if(a==b&&b==c&&c==d) ans[s]+=1; if(a< b&&b==c&&c==d) ans[s]+=4; if(a==b&&b< c&&c==d) ans[s]+=6; if(a==b&&b==c&&c< d) ans[s]+=4; if(a< b&&b< c&&c==d) ans[s]+=12; if(a< b&&b==c&&c< d) ans[s]+=12; if(a==b&&b< c&&c< d) ans[s]+=12; if(a< b&&b< c&&c< d) ans[s]+=24; } } } } for(int i=0;i<=N;++i) cout << ans[i] << "\n"; return 0; }