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!)
A288914 a(1) = 2; a(n) = a(floor(n/a(n-1))) + 1 for n > 1. 3
2, 3, 3, 3, 3, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 5, 4, 4, 4, 4, 4, 5, 5, 5, 4, 5, 4, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Least values of k such that a(k) = n are 1, 2, 6, 24, 120, 720, 5040, ... (n > 1).
These appear to be (n-1)!. Verified for 2 <= n <= 11. - Robert Israel, Jun 22 2017
LINKS
MAPLE
f:= proc(n) option remember;
procname(floor(n/procname(n-1)))+1
end proc:
f(1):= 2:
map(f, [$1..200]); # Robert Israel, Jun 22 2017
MATHEMATICA
a = {2}; Do[AppendTo[a, a[[Floor[n/a[[n - 1]] ] ]] + 1], {n, 2, 105}]; a (* Michael De Vlieger, Jun 21 2017 *)
PROG
(PARI) q=vector(10000); q[1]=2; for(n=2, #q, q[n] = q[n\q[n-1]]+1); q
CROSSREFS
Sequence in context: A366105 A093493 A087162 * A046925 A090529 A297212
KEYWORD
nonn,easy
AUTHOR
Altug Alkan, Jun 19 2017
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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)