Calculate and Save To generate pairs of random seed numbers, create an array of psuedorandom numbers, calculate statistical moments of the array, and print seeds that meet the criteria by use of a multiple recursive random number generator (mrrng). The number of trial runs is specified in text box B "B: Number of trial seed values in each iteration of the MRRNG (Enter Integer Value)" The number of uniform random variates in each run is specified in the textbox labeled "Number of values in the Random Number Array (Enter Integer Value)" The criteria for rejection (of the entire finished set) are: If (avg < 0.49975) Or (avg > 0.50025) Then GoTo 99 '1/20 of one percent of theoretical average 0.5 If (var < 0.08325) Or (var > 0.08342) Then GoTo 99 '1/10 of one percent of theoretical var 0.0833.. If (skew < -0.0044) Or (skew > 0.0044) Then GoTo 99 '+/-44/10000 of theoretical skew 0.00000 Try Running Stats To generate pairs of random seed numbers, create an array of psuedorandom numbers, calculate statistical moments of the array, and print seeds that meet the criteria by use of a multiple recursive random number generator (mrrng). Do this by keeping the array within bounds on the fly. Uses up to 3000 values Warning: this is designed to run for hours. Enter an hours value in the B. text box The criteria for rejection (as values are generated) are: If ii < 750 Then If (davg < 0.49375 Or davg > 0.50625) Then GoTo NotGoodEnough: '1.25% ElseIf ii < 1000 Then If (davg < 0.494375 Or davg > 0.505625) Then GoTo NotGoodEnough: '1.125% ElseIf ii < 1500 Then If (davg < 0.4945 Or davg > 0.5055) Then GoTo NotGoodEnough: '1.1% ElseIf ii < 2500 Then If (davg < 0.49475 Or davg > 0.50525) Then GoTo NotGoodEnough: '1.05% Else If (davg < 0.495 Or davg > 0.505) Then GoTo NotGoodEnough: '1.0% Test Sum Purpose to see the sum of uniform random values after 10,000,000 are generated, should be about 5,000,000 Make Out Array Make an array of uniform variates given 2 seeds and an array size provide the running average, standard deviation and skew once the number is greater than 5