The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A323115 Numbers k such that 429*2^k+1 is prime. 1
1, 3, 5, 6, 9, 11, 21, 27, 37, 54, 55, 113, 147, 181, 185, 222, 313, 317, 695, 1003, 1270, 1385, 1483, 1519, 1567, 2057, 2550, 4014, 4467, 5773, 6078, 6103, 7951, 9958, 11317, 11807, 12974, 14046, 14401, 14585, 16686, 17433, 37525, 62486, 65195, 76726, 85881 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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(429*2^k+1), [$1..1000]); # Muniru A Asiru, Jan 05 2019
MATHEMATICA
Select[Range[1000], PrimeQ[429*2^# + 1] &]
PROG
(Python)
from sympy.ntheory.primetest import isprime
for n in range(1, 1000):
if isprime(429*2**n+1):
print(n, end=', ') # Stefano Spezia, Jan 05 2019
CROSSREFS
Sequence in context: A248638 A248881 A205534 * A285377 A192577 A236343
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 May 23 02:40 EDT 2024. Contains 372758 sequences. (Running on oeis4.)