OFFSET
1,2
COMMENTS
The original name was "FibCon sequence". However, this sequence has only a passing resemblance to Connell-like sequences (see A001614), which are all monotone, while this sequence is a bijection of natural numbers.
Fixed points of the permutation are the terms of A062114. - Ivan Neretin, Sep 04 2017
LINKS
FORMULA
EXAMPLE
1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,...
2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,...
then we get the following subsequences:
S1={1}
S2={2}
S3={3,5}
S4={4,6,8}
S5={7,9,11,13,15}
S6={10,12,14,16,18,20,22,24}
...
and concatenating them S1/S2/S3/S4/S5/... gives this sequence.
MATHEMATICA
o = 1; e = 2; Flatten@Table[If[OddQ[n], Range[o, (o += 2 Fibonacci[n]) - 1, 2], Range[e, (e += 2 Fibonacci[n]) - 1, 2]], {n, 9}] (* Ivan Neretin, Sep 04 2017 *)
PROG
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Ctibor O. Zizka, May 14 2008
EXTENSIONS
Edited, extended and Scheme code added by Antti Karttunen, Oct 05 2009
STATUS
approved