A322956 Numbers k such that 327*2^k+1 is prime.
3, 4, 6, 15, 30, 64, 99, 108, 135, 363, 414, 531, 576, 811, 1326, 1414, 1476, 1936, 2371, 3951, 4195, 13324, 21696, 23203, 35790, 46950, 51756, 55174, 61876, 92487, 134104, 691951, 706915, 1743751
Offset: 1
Links
- Ray Ballinger, Proth Search Page
- Ray Ballinger and Wilfrid Keller, List of primes k.2^n + 1 for 300 < k < 600
- Y. Gallot, Proth.exe: Windows Program for Finding Large Primes
- Wilfrid Keller, List of primes k.2^n - 1 for k < 300
- Eric Weisstein's World of Mathematics, Proth Prime
- Index entries for sequences of n such that k*2^n-1 (or k*2^n+1) is prime
Programs
-
Maple
select(n->isprime(327*2^n+1),[$1..1000]); # Muniru A Asiru, Dec 31 2018
-
Mathematica
Select[Range[1000], PrimeQ[327*2^# + 1] &] (* Robert Price, Dec 31 2018 *)