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!)
A335282 Lexicographically earliest strictly increasing sequence of positive integers whose Recamán transform has only distinct values. 1
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The Recamán transform of a sequence {b(n), n>0} is the sequence {r(n), n>=0} defined as follows: r(0) = 0; for n > 0, r(n) = r(n-1) - b(n) if nonnegative and not already in the sequence, otherwise r(n) = r(n-1) + b(n).
This sequence has large runs of consecutive terms.
The Recamán transform of this sequence, say r, first differ from A064388 for n = 123: r(123) = 19 whereas A064388(123) = 300.
LINKS
PROG
(PARI) { rr = 2^r=0; for (v=1, 72, forstep (s=-1, +1, 2, if (r+s*v>=0 && !bittest(rr, r+s*v), rr += 2^r+=s*v; print1 (v ", "); break))) }
CROSSREFS
Sequence in context: A048242 A272076 A335280 * A370133 A351576 A132264
KEYWORD
nonn
AUTHOR
Rémy Sigrist, May 30 2020
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 April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)