Problem 44339. Recaman Sequence - II

Take an arbitrary starting point as input and create Recaman Sequence. Then find the 1, return its index.

For example: if n = 0 (default Recaman sequence)

seq = [0 1 3 6 2];

1 is in the second place.

if n = 10;

seq = [10 9 7 4 8 3 9 2 10 1 11 22 34 21];

1 is in the 10th place

Related Challenges :

  1. Recaman Sequence - I
  2. Recaman Sequence - II
  3. Recaman Sequence - III

Solution Stats

57.62% Correct | 42.38% Incorrect
Last Solution submitted on Mar 09, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers267

Suggested Problems

More from this Author92

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!