double faktoriyelhesapla(int n){
double sonuc=0;
for(int i=1;i<=n;i++){
sonuc=sonuc+(1/faktoriyelal(n))
}
return sonuc;
}


int faktoriyelal(int n){
int sonuc=1;
for(int i=1;i<=n;i++){
sonuc=sonuc*n;
}
return sonuc;
}

MessageBox.Show(faktoriyelHesapla(5)); ile sonucu yazdırırsınız
faktoriyelal methodu bir sayının faktoriyeli bulan method
faktoriyelhesapla methoduda farklı bir isimde olabilir formula göre sonuç döndürüyor
kodları test etmedim bu arada