Allows you to open how many times each cycle will be executed.
First loop 1, 2, 3, 4, 5, ...., N Second loop 1, 4, 9, 16, 25, ...., (N*N) // N^2 Third loop 1, 16, 81, 256, 625, ...., ( (N*N)*(N*N) ) // N^4
So, I believe that complexity should be N ^ 4
EDIT 1
Based on the comment, I think the complexity will be the sum of the series
1, 16, 81, 256, 625, ...., ( (N*N)*(N*N) )
EDIT 2
I think we made a mistake when opening loops (thanks to CodeYogi ). Let's try again.
First loop 1, 2, 3, 4, 5, ...., N Second loop 1, 4(1,2,3, 4), 9 (1,2,....9), 16, 25, ...., (N*N) Third loop 1, 30(1+4+9+16), 285(1+4+...81), and so on..........