We know a 649 game has 13,983,816 [49C6] lines (or combinations) and every line has an equal chance of being drawn.
Incidentally you will note that certain lines do not show up regularly like others.
I have started this thread for those who think/believe certain lines are unlikely to be drawn and hence eliminate them from 13,983,816.
Your idea/contributions on how to eliminate non obvious lines is highly welcome.
To start the ball rolling, first is to generate all the possible 13,983,816 lines. For non programming guys the following code will run in Excel and generate a text file (L649.txt) on the root of c drive
Sub Generate49C6()
Open "c:\L649.txt" For Output As #1
For i1 = 1 To 49 - 5
For i2 = i1 + 1 To 49 - 4
For i3 = i2 + 1 To 49 - 3
For i4 = i3 + 1 To 49 - 2
For i5 = i4 + 1 To 49 - 1
For i6 = i5 + 1 To 49 - 0
Print #1, i1 & "," & i2 & "," & i3 & "," & i4 & "," & i5 & "," & i6
Next
Next
Next
Next
Next
Next
Close #1
End Sub
Consecutive numbers/offset >3
not many 649 game will have more than 3 consecutive/offset combination.
From our local 649 game of 282 draws it is only 15,23,24,31,32,40 line that has shown up out of 33,551 such lines in 13,983,816 lines. If you look at 15,23,24,31,32,40 it has 23-15=8,31-23=8,32-24=8 and 40-32=8. If you need the code to eliminated the consecutive/offset I can provide
Please if you have a way of eliminating such lines as described above do share with us to reduce these 13,983,816 lines and probably have a reasonable lines to choose from.
Thanks
Incidentally you will note that certain lines do not show up regularly like others.
I have started this thread for those who think/believe certain lines are unlikely to be drawn and hence eliminate them from 13,983,816.
Your idea/contributions on how to eliminate non obvious lines is highly welcome.
To start the ball rolling, first is to generate all the possible 13,983,816 lines. For non programming guys the following code will run in Excel and generate a text file (L649.txt) on the root of c drive
Sub Generate49C6()
Open "c:\L649.txt" For Output As #1
For i1 = 1 To 49 - 5
For i2 = i1 + 1 To 49 - 4
For i3 = i2 + 1 To 49 - 3
For i4 = i3 + 1 To 49 - 2
For i5 = i4 + 1 To 49 - 1
For i6 = i5 + 1 To 49 - 0
Print #1, i1 & "," & i2 & "," & i3 & "," & i4 & "," & i5 & "," & i6
Next
Next
Next
Next
Next
Next
Close #1
End Sub
Consecutive numbers/offset >3
not many 649 game will have more than 3 consecutive/offset combination.
From our local 649 game of 282 draws it is only 15,23,24,31,32,40 line that has shown up out of 33,551 such lines in 13,983,816 lines. If you look at 15,23,24,31,32,40 it has 23-15=8,31-23=8,32-24=8 and 40-32=8. If you need the code to eliminated the consecutive/offset I can provide
Please if you have a way of eliminating such lines as described above do share with us to reduce these 13,983,816 lines and probably have a reasonable lines to choose from.
Thanks