|
%I
%S 5,67,262153,1073741839,18889465931478580854821,
%T 1496577676626844588240573268701473812127674924007509,
%U 118571099379011784113736688648896417641748464297615937576404566024103044751294597
%N Primes of the form 4^n + n.
%C It is convenient, although not necessary, to let n be an odd number since n even => 4^n + n is even > 2. Conjecture: There is an infinite number of primes in this sequence.
%e For n = 3, 4^3+3=67 is prime.
%o (PARI) f(n) = for(x=1,n,y=2^x+x;if(isprime(y),print1(y",")))
%K nonn
%O 1,1
%A Cino Hilliard (hillcino368(AT)hotmail.com), Jun 10 2007, Aug 20 2007
|