for example: I have a series 
is there numerical computation method to find it ? thanks
for example: I have a series 
is there numerical computation method to find it ? thanks
Your terms are proportional to $\frac1{16·36·n^6}$, accordingly the error of the n-th partial sum is about $\frac1{16·36·5·n^5}$, so the first 100 terms, summed from smallest to largest, should give a valid numerical result.
You might also try out the Epsilon algorithm of P. Wynn, "On the Convergence and Stability of the Epsilon Algorithm", SIAM Journal on Numerical Analysis 3 (1) (Mar 1966), p. 91–122
Yoy can write $$(1 - 4 n^2)^2 (36 n^2 + 1)=(2 n-1)^2 (2 n+1)^2 (6 n-i) (6 n+i)$$ Using partiai fractions, the summand is $$\frac{7}{100 (2 n+1)}-\frac{7}{100 (2 n-1)}+\frac{81 i}{200 (6 n+i)}-\frac{81 i}{200 (6 n-i)}+$$ $$\frac{1}{40 (2 n+1)^2}+\frac{1}{40 (2 n-1)^2}$$
Computing the partial sums up to $p$, we have at the end for $800 S_p$ $$\frac{56}{2 p+1}+\frac{5}{\left(p+\frac{1}{2}\right)^2}-54 i \psi \left(p+\left(1-\frac{i}{6}\right)\right)+54 i \psi \left(p+\left(1+\frac{i}{6}\right)\right)-10 \psi ^{(1)}\left(p+\frac{1}{2}\right)+5 \pi ^2-400+54 \pi \coth \left(\frac{\pi }{6}\right)$$
Now, using asymptotics and Taylor expansions $$S_p=\frac{1}{800} \left(5 \pi ^2+54 \pi \coth \left(\frac{\pi }{6}\right)-400\right)-\frac{1}{2880 p^5}+\frac{1}{1152 p^6}+O\left(\frac{1}{p^7}\right)$$
Computing for $p=10$ $$S_{10}=\frac{89936259827237312633515635583570094}{29615662049611209795735649868626520625}$$ which is $0.00303678032$ while the above truncated expansion gives
$$S_{10}\sim -\frac{192000001}{384000000}+\frac{\pi ^2}{160}+\frac{27}{400} \pi \coth \left(\frac{\pi }{6}\right)$$ which is $0.00303678042$