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”).

A187687
Rank transform of the sequence floor(5n/3); complement of A187688.
3
1, 3, 5, 7, 9, 11, 12, 15, 16, 18, 20, 22, 24, 26, 28, 29, 31, 34, 35, 37, 39, 41, 43, 45, 46, 48, 50, 52, 54, 56, 58, 60, 62, 63, 65, 67, 69, 71, 73, 75, 77, 79, 80, 82, 84, 86, 88, 90, 92, 94, 96, 97, 99, 101, 103, 105, 107, 108, 111, 113, 114, 116, 118, 120, 122, 124, 125, 127, 130, 131, 133, 135, 137, 139, 141, 143, 145, 146, 148, 150, 152
OFFSET
1,2
COMMENTS
See A187224.
MATHEMATICA
seqA = Table[Floor[5n/3], {n, 1, 220}]
seqB = Table[n, {n, 1, 220}]; (*A000027*)
jointRank[{seqA_,
seqB_}] := {Flatten@Position[#1, {_, 1}],
Flatten@Position[#1, {_, 2}]} &[
Sort@Flatten[{{#1, 1} & /@ seqA, {#1, 2} & /@ seqB}, 1]];
limseqU =
FixedPoint[jointRank[{seqA, #1[[1]]}] &,
jointRank[{seqA, seqB}]][[1]] (*A187687*)
Complement[Range[Length[seqA]], limseqU] (*A187688*)
(*by Peter J. C. Moses, Mar 12 2011*)
CROSSREFS
Sequence in context: A182765 A246407 A151916 * A056617 A213924 A082655
KEYWORD
nonn
AUTHOR
Clark Kimberling, Mar 12 2011
STATUS
approved