Compute the smallest positive integer $x$ such that
$\lfloor \sqrt[8]{x}\rfloor <\lfloor \sqrt[7]{x}\rfloor <\lfloor \sqrt[6]{x}\rfloor <\lfloor \sqrt[5]{x}\rfloor <\lfloor \sqrt[4]{x}\rfloor <\lfloor \sqrt[3]{x}\rfloor <\lfloor \sqrt{x}\rfloor < x$
I do not know how to solve this problem. I tried to brute force it, but it did not work.
Is this a programming question? I am unsure of a mathematical trick that would yield the result, but here is a quick python script
In about a second it spits out 4096 as the first integer with this property.