Skip to content

Instantly share code, notes, and snippets.

@bogdanteleaga
bogdanteleaga / keybase.md
Last active June 28, 2016 12:47
keybase.md

Keybase proof

I hereby claim:

  • I am bogdanteleaga on github.
  • I am bteleaga (https://keybase.io/bteleaga) on keybase.
  • I have a public key whose fingerprint is F3B9 4CCC 8F7A E5D0 616B F38B 29D1 58A3 717A 85A1

To claim this, I am signing this object:

(defn taylor-x [x n]
(->>
(iterate inc 1)
(reductions / 1.0)
(take n)
(map * (take n (iterate (partial * x) 1))
(apply +)
))