OFFSET
1,2
COMMENTS
Complement of A057732.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
For n=0, 3+2^0=4 is not prime. n=5, 3+2^5=35=5*7, not prime. n=8, 3+2^8=259=7*37 not prime.
MATHEMATICA
Select[Range[0, 100], !PrimeQ[3 + 2^#] &] (* Vincenzo Librandi, Oct 15 2012 *)
PROG
(Magma) [n: n in [0..100] |not IsPrime(3 + 2^n )]; // Vincenzo Librandi, Oct 15 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Oct 03 2009
EXTENSIONS
Entries checked - R. J. Mathar, Oct 05 2009
STATUS
approved