First Post

The content of this first micro-blog style post is not so interesting. It is merely a test to see if math expressions and code work. However, it is left as a historical tidbit to potentially make you chuckle. Have a nice day. :sweat_smile: (totally not testing emojis)

Here is my favorite formula:

π=229801k=0((4k)!(1103+26390k)(k!)43964k)\pi = \frac{2\sqrt{2}}{9801}\sum^\infty_{k=0}\left(\frac{(4k)!(1103+26390k)}{(k!)^4 396^{4k}}\right)

And here is some OCaml code:

(* fibonacci function *)
let fib n = 
  if n <= 1 then
    n
  else
    fib (n-1) + fib (n-2)