A094476 Primes of form 2^j + 17^j.
2, 19, 293, 83537
Offset: 1
Keywords
Examples
j=0: p=1+1=2;j=1: p=2+17=19;j=2: p=4+289=293;j=4: p=16+83521=83537; the j exponents are powers of 2.
Programs
-
Mathematica
Select[Table[2^n+17^n,{n,0,2000}],PrimeQ] (* Harvey P. Dale, Nov 27 2012 *)
Comments