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!)
A251543 a(n) = smallest m such that b(m) is prime and b(m+2)/b(m) = prime(n), where b() = A098550(). 2

%I #24 Dec 15 2018 08:35:14

%S 2,3,9,101,682,2483,31774,532976

%N a(n) = smallest m such that b(m) is prime and b(m+2)/b(m) = prime(n), where b() = A098550().

%C So far a(n) is very roughly 2^(3n-6). Of course it is not known at present if this sequence is infinite (see A098550). It is not even known if there are infinitely many prime terms in A098550. [It is now known that A098550 is a permutation of the natural numbers, so all of the primes appear. See Applegate et al. - _L. Edson Jeffery_, Dec 30 2014]

%C a(8) appears to deviate from the formula 2^(3n-6) and is closer to 2^19 (than 2^18). - _Chai Wah Wu_, Dec 16 2014

%H David L. Applegate, Hans Havermann, Bob Selcoe, Vladimir Shevelev, N. J. A. Sloane, and Reinhard Zumkeller, <a href="http://arxiv.org/abs/1501.01669">The Yellowstone Permutation</a>, arXiv preprint arXiv:1501.01669 [math.NT], 2015 and <a href="https://cs.uwaterloo.ca/journals/JIS/VOL18/Sloane/sloane9.html">J. Int. Seq. 18 (2015) 15.6.7</a>.

%t f[lst_] := Block[{k = 4}, While[GCD[lst[[-2]], k] == 1 || GCD[lst[[-1]], k] > 1 || MemberQ[lst, k], k++]; Append[lst, k]]; A098850 = Nest[f, {1, 2, 3}, max = 3000]; b[n_] := A098850[[n]];

%t a[n_] := For[m = 1, m <= max, m++, If[PrimeQ[b[m]] && b[m+2]/b[m] == Prime[n], Return[m]]];

%t Do[Print[n, " ", a[n]], {n, 1, 6}] (* _Jean-François Alcover_, Dec 15 2018, after _Robert G. Wilson v_ in A098850 *)

%Y Cf. A098550, A251542.

%K nonn,more

%O 1,1

%A _David Applegate_ and _N. J. A. Sloane_, Dec 15 2014

%E a(8) from _Chai Wah Wu_, Dec 16 2014

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 March 19 07:31 EDT 2024. Contains 370955 sequences. (Running on oeis4.)