1 2 3 4 5 6 7 8 9
E=Math.exp(1) def intk(k) return k<1 ? 1-E**(-1) : k*intk(k-1)-E**(-1) end 25.times { |i| z=intk(i) puts "#{i}: #{z}" }