//USE JAVA FOR RECURSION
Write a program that recursively calculates the followingseries: m(i) = 1 + 4/11 + 6/26 + 8/47+ … +2i / 3i^2 -1 .
Write a test program that demonstrates the procedure for i = 1to 10 using a loop
Expert Answer
Answer to //USE JAVA FOR RECURSION Write a program that recursively calculates the following series: m(i) = 1 + 4/11 + 6/26 + 8/47…