You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a function series(n: int) → float that returns the nth term of a sequence defined by a_i = 3√(a_(i-1)) where a_0 = 1. Return the final result rounded to 3 decimal places.