login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A323114 Numbers k such that 427*2^k+1 is prime. 1
2, 4, 6, 8, 12, 20, 22, 56, 66, 94, 136, 142, 174, 186, 200, 286, 352, 362, 512, 582, 842, 1056, 1080, 1144, 1242, 1810, 4802, 5106, 6914, 12982, 16760, 19958, 20108, 22194, 23512, 29636, 42816, 66178, 70624, 81390, 129958, 184046, 278876, 343432, 396612 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Jeppe Stig Nielsen, Table of n, a(n) for n = 1..57 (terms n = 1..54 from Robert Price)
Ray Ballinger, Proth Search Page
Ray Ballinger and Wilfrid Keller, List of primes k.2^n + 1 for 300 < k < 600
Eric Weisstein's World of Mathematics, Proth Prime
MAPLE
select(k->isprime(427*2^k+1), [$1..1000]); # Muniru A Asiru, Jan 05 2019
MATHEMATICA
Select[Range[1000], PrimeQ[427*2^# + 1] &]
PROG
(Python)
from sympy.ntheory.primetest import isprime
for n in range(1, 1000):
if isprime(427*2**n+1):
print(n, end=', ') # Stefano Spezia, Jan 05 2019
CROSSREFS
Sequence in context: A057335 A126907 A292994 * A362231 A118563 A228515
KEYWORD
nonn,hard
AUTHOR
Robert Price, Jan 04 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 29 07:27 EDT 2024. Contains 371265 sequences. (Running on oeis4.)