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!)
A250200 Least number k>1 such that (2n-1)^k - 2 is prime, or 0 if no such number exists. 3

%I #24 Jul 24 2017 12:46:39

%S 0,2,2,2,2,4,2,2,6,2,2,24,7,2,2,3,2,2,2,4,4,2,11,2,2,8,4,2,12,4,2,2,8,

%T 3,2,2,4,2,2,38,130,4,4,4,2,3,2,4,747,3,4,2,10,2,3,17,10,13,2,2,2,6,

%U 42,2,3,2,6,2,10,2,4,4,2,16,50,3,9,2,22,25

%N Least number k>1 such that (2n-1)^k - 2 is prime, or 0 if no such number exists.

%H Robert Price, <a href="/A250200/b250200.txt">Table of n, a(n) for n = 1..143</a>

%t lst = {0}; For[n = 2, n ≤ 143, n++, For[k = 2, k >= 1, k++, If[PrimeQ[(2*n - 1)^k - 2], AppendTo[lst, k]; Break[]]]]; lst

%t lnk[n_]:=Module[{k=2,c=2n-1},While[!PrimeQ[c^k-2],k++];k]; Join[{0}, Array[ lnk,80,2]] (* _Harvey P. Dale_, Jul 24 2017 *)

%Y Cf. A084712, A084713, A084714, A079706, A138066, A255707.

%K nonn

%O 1,2

%A _Robert Price_, Mar 02 2015

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 April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)