The downloads on this page are stored in a C# serialized list of System.UInt64 values. Load the list thusly:
List<System.UInt64> lst = new List<System.UInt64>();
lst = lst.Load(<Path-to-downloaded-file>);
Here's an example of the format of the first 10 Prime numbers when opening the list file with Notepad:
<ArrayOfunsignedLong z:Id="1" z:Type="System.Collections.Generic.List`1[[System.UInt64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]" z:Assembly="0" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/"><_items z:Id="2" z:Size="16"><unsignedLong>2</unsignedLong><unsignedLong>3</unsignedLong><unsignedLong>5</unsignedLong><unsignedLong>7</unsignedLong><unsignedLong>11</unsignedLong><unsignedLong>13</unsignedLong><unsignedLong>17</unsignedLong><unsignedLong>19</unsignedLong><unsignedLong>23</unsignedLong><unsignedLong>29</unsignedLong><unsignedLong>0</unsignedLong><unsignedLong>0</unsignedLong><unsignedLong>0</unsignedLong><unsignedLong>0</unsignedLong><unsignedLong>0</unsignedLong><unsignedLong>0</unsignedLong></_items><_size>10</_size><_version>10</_version></ArrayOfunsignedLong>
Here's the list:
First 100 million Prime numbers (302 MB)
No comments:
Post a Comment
Comments are moderated only for the purpose of keeping pesky spammers at bay.