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!)
A090125 a(n) is the least positive integer such that nextprime(a(n)^n) - prevprime(a(n)^n) = 4. 5

%I #17 Sep 03 2019 21:13:37

%S 5,3,2,2,411,195,2,392,141,105,1161,909,69,3243,171,370,1659,165,

%T 26289,1065,8541,19593,43521,1323,84651,25767,25641,7029,63009,693,

%U 231,957,2601,7137,368265,14769,8169,13071,23679,45,13875,6693,136611,34869,55725,4887,231,1935,730071,10305

%N a(n) is the least positive integer such that nextprime(a(n)^n) - prevprime(a(n)^n) = 4.

%H Daniel Suteu, <a href="/A090125/b090125.txt">Table of n, a(n) for n = 1..100</a>

%e with q-p=4,q,p are primes:

%e n=1:a(1)=5 because {p=3,a(1)^1=5,q=5};

%e n=7:a(7)=2 because {p=127,a(7)^7=128, q=131};

%e n=10:a(10)=105 because {p=c-2,c=a(10)^10=162889462677744140625,q=c+2}

%t Table[fla=1;Do[If[((PrimeQ[s=n^k-3]&&PrimeQ[s1=n^k+1]) ||(PrimeQ[s=n^k-2]&&PrimeQ[s1=n^k+2])||(PrimeQ[s=n^k-1] &&PrimeQ[s1=n^k+3]))&&Equal[fla, 1]&&!Equal[n, 1], Print[{n, p, n^k, q, {k}}];fla=0], {n, 1, 1000000}], {k, 1, 60}]

%o (PARI) a(n) = {my(k=1); while (nextprime(k^n+1) - precprime(k^n-1) != 4, k++); k;} \\ _Michel Marcus_, Sep 03 2019

%o (PARI) f(k,r) = ispseudoprime(k-r) && ispseudoprime(k-r+4);

%o a(n) = for(k=1, oo, my(t=k^n); if((f(t,1) || f(t,2) || f(t,3)) && nextprime(t+1)-precprime(t-1)==4, return(k))); \\ _Daniel Suteu_, Sep 03 2019

%Y Cf. A090121, A090122, A090123, A090124.

%K nonn

%O 1,1

%A _Labos Elemer_, Jan 12 2004

%E a(2) corrected and a(45)-a(50) from _Daniel Suteu_, Sep 03 2019

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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)