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!)
A196303 Numbers n such that both n and (n-1)*2^n+1 are primes. 0
2, 3, 7, 1471, 1483, 61627, 88731 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p such that (p-1)*2^p+1 is also prime.
LINKS
EXAMPLE
a(1)=2 because 2 and (2-1)*2^2+1=5 are both prime.
a(2)=3 because 3 and (3-1)*2^3+1=17 are both prime.
a(3)=7 because 7 and (7-1)*2^7+1=769 are both prime.
MATHEMATICA
Select[Prime[Range[9000]], PrimeQ[(#-1)2^#+1]&] (* Harvey P. Dale, Jan 19 2012 *)
PROG
(PARI) forprime(n=1, 1e4, if(ispseudoprime((n-1)<<n+1), print1(n", "))) \\ Charles R Greathouse IV, Oct 09 2011
CROSSREFS
Subsequence of A128001.
Sequence in context: A266276 A088252 A334021 * A048979 A201363 A088332
KEYWORD
nonn
AUTHOR
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)