login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A130535
a(0)=a(1)=1; a(n+2) = a(floor((n+1)/a(n+1))) + a(floor(n/a(n))).
4
1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 4, 5, 5, 5, 6, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 6, 7, 7, 6, 7, 7, 7, 8, 7, 7, 8, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8
OFFSET
0,3
COMMENTS
The sequence is unbounded. - Rémy Sigrist, Aug 08 2019
LINKS
MAPLE
a[0]:=1: a[1]:=1: for n from 0 to 80 do a[n+2]:= a[floor((n+1)/a[n+1])]+a[floor(n/a[n])] end do: seq(a[n], n=0..80); # Emeric Deutsch, Aug 13 2007
PROG
(C) See Links section.
CROSSREFS
Cf. A130147.
Sequence in context: A351700 A361928 A300013 * A329194 A375499 A210533
KEYWORD
nonn,look,easy
AUTHOR
Leroy Quet, Aug 09 2007
EXTENSIONS
More terms from Emeric Deutsch, Aug 13 2007
STATUS
approved