The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A183084 Tree generated by the Beatty sequence of e-1. 1
1, 2, 3, 4, 5, 7, 6, 9, 8, 11, 12, 16, 10, 14, 15, 21, 13, 19, 18, 26, 20, 28, 27, 38, 17, 23, 24, 33, 25, 35, 36, 50, 22, 31, 32, 45, 30, 43, 44, 62, 34, 47, 48, 66, 46, 64, 65, 90, 29, 40, 39, 55, 41, 57, 56, 78, 42, 59, 60, 83, 61, 86, 85, 119 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A permutation of the positive integers.
LINKS
FORMULA
Let L(n) = floor(r*n) and U(n) = floor(s*n), where r=e-1 and s=r/(r-1).
The tree-array T(n,k) is then given by rows:
T(0,0) = 1; T(1,0) = 2; T(n,2j) = L(T(n-1),j); T(n,2j+1) = U(T(n-1),j);
for j=0,1,...,2^(n-1)-1, n>=2.
EXAMPLE
Top 5 rows:
1
2
3 4
5 7 6 9
8 11 12 16 10 14 15 21
MATHEMATICA
a = {1, 2}; row = {a[[-1]]}; r = E - 1; s = r/(r - 1); Do[a = Join[a, row = Flatten[{Floor[#*{r, s}]} & /@ row]], {n, 5}]; a (* Ivan Neretin, Nov 09 2015 *)
CROSSREFS
Sequence in context: A120750 A265672 A178528 * A185975 A232639 A232638
KEYWORD
nonn,tabf
AUTHOR
Clark Kimberling, Dec 23 2010
STATUS
approved

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 May 21 14:18 EDT 2024. Contains 372738 sequences. (Running on oeis4.)