login
A200821
Numbers k such that (2^k + k)*2^k - 1 is prime.
7
1, 2, 34, 107, 1568, 1933, 3551, 6793, 16967, 45157, 62222
OFFSET
1,2
COMMENTS
The generalization of this sequence is possible with the primes of the form (b^n +- k)*b^n +- 1.
EXAMPLE
2 is in the sequence because (2^2 + 2)*2^2 - 1 = 23 is prime.
MATHEMATICA
lst={}; Do[If[PrimeQ[(2^n + n)*2^n-1], AppendTo[lst, n]], {n, 10000}]; lst
PROG
(PARI) is(n)=ispseudoprime((2^n+n)<<n-1) \\ Charles R Greathouse IV, Feb 17 2017
KEYWORD
nonn,more
AUTHOR
Michel Lagneau, Nov 23 2011
EXTENSIONS
a(9) from Michael S. Branicky, Jul 13 2023
a(10)-a(11) from Michael S. Branicky, Aug 13 2024
STATUS
approved