Open.Numeric.Primes
4.0.3
dotnet add package Open.Numeric.Primes --version 4.0.3
NuGet\Install-Package Open.Numeric.Primes -Version 4.0.3
<PackageReference Include="Open.Numeric.Primes" Version="4.0.3" />
paket add Open.Numeric.Primes --version 4.0.3
#r "nuget: Open.Numeric.Primes, 4.0.3"
// Install Open.Numeric.Primes as a Cake Addin #addin nuget:?package=Open.Numeric.Primes&version=4.0.3 // Install Open.Numeric.Primes as a Cake Tool #tool nuget:?package=Open.Numeric.Primes&version=4.0.3
Open.Numeric.Primes
Methods and extensions for prime number detection and discovery.
Examples
Importing
using Open.Numeric.Primes;
Primality Test
Number.IsPrime(8592868089022906369); // true
Factors
Prime.Factors(12); // 2, 2, 3
Common Factors
Prime.CommonFactors(84, 756, 108); // 2, 2, 3
Greatest Factor
Prime.GreatestFactor(84, 756, 108); // 12
Prime Discovery
// Will list the first 1000 primes.
foreach(var prime in Prime.Numbers.Take(1000))
{
Console.Write(prime);
}
or
// Will list the first 1000 primes greater than (or equal to) 10,000.
foreach(var prime in Prime.Numbers.StartingAt(10000).Take(100))
{
Console.Write(prime);
}
Extensions
Extensions are also available for integer types.
using Open.Numeric.Primes.Extensions;
8592868089022906369.IsPrime(); // true
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Open.Collections (>= 4.0.1)
- System.Memory (>= 4.6.0)
-
.NETStandard 2.1
- Open.Collections (>= 4.0.1)
-
net7.0
- Open.Collections (>= 4.0.1)
-
net8.0
- Open.Collections (>= 4.0.1)
-
net9.0
- Open.Collections (>= 4.0.1)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Open.Numeric.Primes:
Package | Downloads |
---|---|
Open.Evaluation
A framework for evaluating complex formulas. Part of the "Open" set of libraries. |
|
DelSquared.Radicals
.NET implementation of radical expressions enabling radical expression arithmetic. |
|
Recyclable.Collections.TestData
`Recyclable.Collections.TestData` project is a basic open source package for containing test data useful for testing collections like `RecyclableList<T>`, `RecyclableLongList<T>`, `List<T>`, `SortableList<T>`, `PriorityQueue<T>` & similar. |
|
Recyclable.Collections.TestData.xUnit
`Recyclable.Collections.TestData.xUnit` project is a basic open source package for working with repeatable xUnit test data useful for testing collections like `RecyclableList<T>`, `RecyclableLongList<T>`, `List<T>`, `SortableList<T>`, `PriorityQueue<T>` & similar. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.3 | 91 | 11/17/2024 |
4.0.2 | 1,281 | 5/28/2024 |
4.0.1 | 117 | 5/25/2024 |
4.0.0 | 110 | 5/25/2024 |
3.1.0 | 388 | 12/15/2023 |
3.0.0 | 1,990 | 2/5/2023 |
2.0.2 | 2,416 | 4/16/2022 |
2.0.1 | 26,370 | 7/4/2021 |
2.0.0 | 794 | 8/23/2020 |
1.6.0 | 547 | 7/17/2020 |
1.5.5 | 1,002 | 1/4/2020 |
1.5.4 | 637 | 7/5/2019 |
1.5.3 | 530 | 7/4/2019 |
1.3.0 | 1,092 | 1/4/2018 |
1.2.2 | 1,102 | 11/4/2017 |
1.1.0 | 1,109 | 9/26/2017 |
1.0.1 | 1,088 | 9/25/2017 |
1.0.0 | 1,190 | 9/25/2017 |