raster.art
SEARCH
Create Account
No wallets connected. Please connect a wallet first.
vertical_pseudorandoms
miusoph, 2022on hic et nunc
Platforms
hic et nunc
Description

/////////////////////////////////////////////////////////////// // Generate random "Big Number" divisible by 17 // /////////////////////////////////////////////////////////////// function randomBN17(allBits) { var i, j=1802, b='0'; if(!allBits) j = Math.round(Math.random()*1802); for(i=0; i<j; ++i) b += new String((Math.round(Math.random() * 1234567)+ new Date().getTime()*1357)%2); b17 = multBin17(b); return(bin2decBN(b17)); }