OFFSET
1,2
COMMENTS
Some of the larger terms are only probable primes.
For these numbers k, 2^(k-1)*(2^k+9) has deficiency 10 (see A101223). - M. F. Hasler, Jul 18 2016
The terms a(48)-a(51) were found by Mike Oakes, a(52) found by Gary Barnes, and a(53-56) found by Lelio R Paula (see link Henri Lifchitz and Renaud Lifchitz). - Elmo R. Oliveira, Dec 01 2023
LINKS
Robert Price, Table of n, a(n) for n = 1..56
Keith Conrad, Square patterns and infinitude of primes, University of Connecticut, 2019.
Henri Lifchitz and Renaud Lifchitz (Editors), Search for 2^n+9, PRP Top Records.
EXAMPLE
For k = 10, 2^10 + 9 = 1033 is prime.
For k = 30, 2^30 + 9 = 1073741833 is prime.
MATHEMATICA
Do[ If[ PrimeQ[ 2^n +9 ], Print[n]], { n, 1, 15000 }]
PROG
(PARI) for(n=1, 9e9, ispseudoprime(2^n+9)&&print1(n", ")) \\ M. F. Hasler, Jul 18 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 15 2000
EXTENSIONS
a(48)-a(51) from Mike Oakes, Aug 17 2001
Edited by T. D. Noe, Oct 30 2008
STATUS
approved