perfect square free by

a=new Array();\x0d
for(i=2;i<=33;i++)a[i*i]="f";\x0d
b=new Array();\x0d
for(i=3;i<=100;i++)if(!a[i])b.push(i);\x0d
print('[' + b.join(', ') + ']')\x0d
\x0d

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page