login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123340 Least m such that 2^n+3^m is prime. 3

%I #6 Feb 01 2023 07:07:49

%S 0,0,0,1,0,2,1,1,0,2,2,4,1,3,3,1,0,8,1,4,8,8,6,2,7,27,6,13,1,10,1,6,4,

%T 8,18,9,19,2,15,29,3,3,17,10,3,11,6,2,5,20,34,4,12,10,26,1,4,2,9,29,

%U 29,10,34,13,4,8,2,1,8,10,26,50,19,12,10,8,13,27,17,9,33,4,2,17,1,7,3,5,61,26

%N Least m such that 2^n+3^m is prime.

%e a(0)=0 because 2^0+3^0=1+1=2 is prime,

%e a(3)=1 because 2^3+3^1=8+3=11 is prime,

%e a(17)=8 because 2^17+3^8=131072+6561=137633 is prime,

%e a(25)=27 because 33554432+7625597484987=7625631039419 is prime, etc.

%t a[n_] := Module[{m, t = 2^n}, For[m = 0, True, m++, If[PrimeQ[t + 3^m], Return[m]]]];

%t Table[a[n], {n, 0, 100}] (* _Jean-François Alcover_, Feb 01 2023 *)

%K nonn

%O 0,6

%A _Zak Seidov_, Oct 11 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 7 08:46 EDT 2024. Contains 372300 sequences. (Running on oeis4.)