大佬帮忙,求图中题目代码,

图片说明

 uint res=0;
 uint n=100;
 for(int i = 1; i < n; i++)
 {
     res = (15 * i * i) + (11 * i) - 3;
     print(res)
 }