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!)
A320297 a(n) = a(n-1-a(a(a(n-1)))) + a(a(a(a(n-1)))) for n > 1, a(n) = n for n < 2. 1
0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 8, 9, 10, 10, 10, 11, 12, 12, 12, 13, 14, 14, 14, 15, 15, 16, 16, 16, 17, 17, 18, 18, 18, 19, 19, 20, 20, 20, 21, 22, 22, 23, 23, 23, 24, 25, 25, 26, 26, 26, 26, 27, 28, 28, 29, 29, 29, 29, 30, 31, 31, 32, 32, 32, 32, 33 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
This sequence hits every positive integer.
LINKS
Abraham Isgur, Mustazee Rahman, On variants of Conway and Conolly's Meta-Fibonacci recursions, arXiv:1407.0425 [math.CO], 2014.
T. Kubo and R. Vakil, On Conway's recursive sequence, Discr. Math. 152 (1996), 225-252.
David Newman and Daniel J. Kleitman, Solution to Problem E3274, Amer. Math. Monthly, 98 (1991), 958-959.
FORMULA
a(n+1) - a(n) = 0 or 1 for all n >= 0.
MATHEMATICA
a[0] = 0; a[1] = 1; a[n_] := a[n] = +a[n - 1 - a[a[n - 1]]] + a[a[a[n - 1]]];
Table[a[i], {i, 1, 300}]
PROG
(GAP) a:=[1, 1];; for n in [3..80] do a[n]:=a[n-1-a[a[a[n-1]]]]+a[a[a[a[n-1]]]]; od; Concatenation([0], a); # Muniru A Asiru, Oct 28 2018
CROSSREFS
Cf. A320063.
Sequence in context: A067434 A336348 A177357 * A165906 A165907 A104103
KEYWORD
nonn
AUTHOR
David S. Newman, Oct 09 2018
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 08:20 EDT 2024. Contains 371964 sequences. (Running on oeis4.)