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

 


A251237
Indices of even numbers in A098550.
6
2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 25, 27, 29, 31, 33, 35, 37, 39, 41, 44, 46, 48, 50, 52, 54, 56, 58, 60, 63, 65, 67, 69, 71, 73, 75, 77, 80, 82, 84, 86, 89, 91, 93, 95, 97, 99, 102, 104, 106, 108, 110, 112, 115, 117, 119, 121, 123, 125, 128, 130, 133, 135
OFFSET
1,1
COMMENTS
A098550(a(n)) mod 2 = 0;
a(n+1) > a(n) + 1;
there are infinitely many even terms in A098550, for proof: see comment #4 in A098550.
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]];
Position[Nest[f, {1, 2, 3}, 140], _?EvenQ] // Flatten (* Jean-François Alcover, Oct 01 2018, after Robert G. Wilson v in A098550 *)
PROG
(Haskell)
a251237 n = a251237_list !! (n-1)
a251237_list = filter (even . a098550) [1..]
CROSSREFS
First row of array A251716.
Sequence in context: A272670 A234521 A085125 * A194402 A134930 A084562
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Dec 02 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 24 06:21 EDT 2024. Contains 376187 sequences. (Running on oeis4.)