Problem 59242. Construct numbers from antidiagonals of stacks of binary numbers
A sequence is constructed in the following way: Express the numbers 1, 2, 3, 4, 5,… in binary and stack them, right-justified. Then read the numbers in upward sloping diagonals and convert to decimal. The first four binary numbers are 11, 110, 101, 100, and their decimal equivalents are 3, 6, 5, 4. 
0 0 0 1
0 0 1 0 
0 0 1 1 
0 1 0 0
0 1 0 1
0 1 1 0 
Write a function to compute the nth term in the sequence. 
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers5
Suggested Problems
- 
         Find relatively common elements in matrix rows 2107 Solvers 
- 
         Project Euler: Problem 2, Sum of even Fibonacci 2611 Solvers 
- 
         Getting the indices from a vector 11171 Solvers 
- 
         Number of lattice points within a circle 34 Solvers 
- 
         Generate a melodic contour string matrix 63 Solvers 
More from this Author314
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!