A082528 Least k such that x(k)=0 where x(1)=n x(k)=k^3*floor(x(k-1)/k^3).
1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
Offset: 0
Keywords
Crossrefs
Cf. A073047.
Programs
-
PARI
a(n)=if(n<0,0,s=n; c=1; while(s-s%(c^3)>0,s=s-s%(c^3); c++); c)
Formula
a(n) seems to be asymptotic to (c*n)^(1/4) where c=6.76....
Comments