function rock(array)
	n = length(array)
	if n > 1 then
		rock(n/3)
	end if
end function