login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A253049
Numbers in A098550 which appear immediately after a prime.
4
3, 4, 6, 10, 13, 33, 18, 42, 48, 31, 58, 70, 43, 82, 90, 102, 110, 120, 126, 140, 144, 154, 150, 182, 180, 198, 200, 220, 216, 228, 272, 252, 280, 270, 300, 306, 312, 330, 336, 340, 348, 360, 390, 392, 396, 400, 442, 438, 468, 440, 506, 480, 484, 500, 486, 518, 528, 540, 574, 546, 570, 572, 616
OFFSET
1,1
COMMENTS
It is conjectured that this is the same as A253048 except for the addition of 3, 13, 31, and 43 (the upper members of the twin primes in A098550).
a(n) = A098550(A251239(n)+1). - Reinhard Zumkeller, Dec 29 2014
LINKS
David L. Applegate, Hans Havermann, Bob Selcoe, Vladimir Shevelev, N. J. A. Sloane, and Reinhard Zumkeller, The Yellowstone Permutation, arXiv preprint arXiv:1501.01669, 2015 and J. Int. Seq. 18 (2015) 15.6.7.
MATHEMATICA
f[lst_] := Block[{k = 4}, While[GCD[lst[[-2]], k] == 1 || GCD[lst[[-1]], k] > 1 || MemberQ[lst, k], k++]; Append[lst, k]];
A098550 = Nest[f, {1, 2, 3}, 1000];
sp = SequencePosition[A098550, {_?PrimeQ, _}] [[All, 2]];
A098550[[sp]] (* Jean-François Alcover, Sep 03 2018, after Robert G. Wilson v in A098550 *)
CROSSREFS
Cf. A098550. See A253048 for another version.
Cf. A251239.
Sequence in context: A240577 A365614 A074321 * A167410 A302340 A310003
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 27 2014
STATUS
approved