The image cannot be sent, therefore: a[i]={(-1)^(i+1)*sin(x)*ln(x)}/{i^2*(i+1)!}
Task:
It is necessary to find a1, a2, ..., an.
n is natural and given.
The way I tried to do this:
import math a=[] k=0 p=0 def factorial(n): f=1 for i in range(1,n+1): f=f*i return f def narys(n): x=input('input x: ')
user2095559
source share