<?xml version="1.0" encoding="UTF-8" standalone="yes"?><oembed><version><![CDATA[1.0]]></version><provider_name><![CDATA[Azimuth]]></provider_name><provider_url><![CDATA[https://johncarlosbaez.wordpress.com]]></provider_url><author_name><![CDATA[John Baez]]></author_name><author_url><![CDATA[https://johncarlosbaez.wordpress.com/author/johncarlosbaez/]]></author_url><title><![CDATA[Triangular Numbers]]></title><type><![CDATA[link]]></type><html><![CDATA[<p>This post is just for fun.  I&#8217;ll start with Pascal&#8217;s triangle and show you the number <i>e</i> hiding inside it.  Using this, we&#8217;ll see how the product of all numbers in the <i>n</i>th row of Pascal&#8217;s triangle is related to the <i>n</i>th triangular number.  </p>
<p>That&#8217;s cute, because Pascal&#8217;s triangle looks so&#8230; <i>triangular!</i>  </p>
<p>But then, with a massive amount of help from Greg Egan, we&#8217;ll dig a lot deeper, and meet strange things like superfactorials, the magic properties of the number 1/12, and the Glaisher&#8211;Kinkelin constant.</p>
<p>First let&#8217;s get warmed up.</p>
<h3> Warmup </h3>
<p>Pascal&#8217;s triangle is a famous and much-studied thing.  It was discovered long before Pascal.  It looks like this:</p>
<div align="center">
<img width="300" src="https://i1.wp.com/upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Pascal%27s_triangle_5.svg/500px-Pascal%27s_triangle_5.svg.png" />
</div>
<p>We write 1&#8217;s down the edges.  We get every other number in the triangle by adding the two numbers above it to its left and right.  People call these numbers <a href="http://en.wikipedia.org/wiki/Binomial_coefficient">binomial coefficients</a>, since you can also get them like this:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%28x+%2B+y%29%5E5+%3D+x%5E5+%2B+5+x%5E4+y+%2B+10+x%5E3+y%5E2+%2B+10+x%5E2+y%5E3+%2B+5+x+y%5E4+%2B+y%5E5+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='(x + y)^5 = x^5 + 5 x^4 y + 10 x^3 y^2 + 10 x^2 y^3 + 5 x y^4 + y^5 ' title='(x + y)^5 = x^5 + 5 x^4 y + 10 x^3 y^2 + 10 x^2 y^3 + 5 x y^4 + y^5 ' class='latex' />
</div>
<p>We get the 10 in <img src='https://s0.wp.com/latex.php?latex=10+x%5E3+y%5E2&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='10 x^3 y^2' title='10 x^3 y^2' class='latex' /> here because there are 10 ways to take 5 things and choose 3 to call <i>x</i>’s and 2 to call <i>y</i>’s.  In general we have</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%28x+%2B+y%29%5En+%3D+%5Csum_%7Bk%3D0%7D%5En+%5Cbinom%7Bn%7D%7Bk%7D+x%5Ek+y%5E%7Bn-k%7D+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ (x + y)^n = &#92;sum_{k=0}^n &#92;binom{n}{k} x^k y^{n-k} }' title='&#92;displaystyle{ (x + y)^n = &#92;sum_{k=0}^n &#92;binom{n}{k} x^k y^{n-k} }' class='latex' />
</div>
<p>where the binomial coefficient <img src='https://s0.wp.com/latex.php?latex=%5Cbinom%7Bn%7D%7Bk%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;binom{n}{k}' title='&#92;binom{n}{k}' class='latex' /> is the kth number on the nth row of Pascal&#8217;s triangle.  Here count both rows and the numbers in a row starting from zero.</p>
<p>Since we can permute <i>n</i> things in </p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=n%21+%3D+1+%5Ccdot+2+%5Ccdot+3+%5Ccdot+%5Ccdots+%5Ccdot+n+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='n! = 1 &#92;cdot 2 &#92;cdot 3 &#92;cdot &#92;cdots &#92;cdot n ' title='n! = 1 &#92;cdot 2 &#92;cdot 3 &#92;cdot &#92;cdots &#92;cdot n ' class='latex' />
</div>
<p>ways, there are </p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Cfrac%7Bn%21%7D%7Bk%21+%28n-k%29%21%7D+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;frac{n!}{k! (n-k)!} }' title='&#92;displaystyle{ &#92;frac{n!}{k! (n-k)!} }' class='latex' />
</div>
<p>ways to take <i>n</i> things and choose <i>k</i> of them to be <i>x</i>’s and (<i>n-k</i>) of them to be <i>y</i>’s.  You see, permuting the <i>x</i>’s or the <i>y</i>’s doesn&#8217;t change our choice, so we have to divide by <img src='https://s0.wp.com/latex.php?latex=k%21&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='k!' title='k!' class='latex' /> and <img src='https://s0.wp.com/latex.php?latex=%28n-k%29%21.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='(n-k)!.' title='(n-k)!.' class='latex' />   </p>
<p>So, the <i>k</i>th number in the <i>n</i>th row of Pascal&#8217;s triangle is:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B%5Cbinom%7Bn%7D%7Bk%7D+%3D+%5Cfrac%7Bn%21%7D%7Bk%21+%28n-k%29%21%7D+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{&#92;binom{n}{k} = &#92;frac{n!}{k! (n-k)!} }' title='&#92;displaystyle{&#92;binom{n}{k} = &#92;frac{n!}{k! (n-k)!} }' class='latex' />
</div>
<p>All this will be painfully familiar to many of you.  But I want everyone to have an fair chance at understanding the next section, where we&#8217;ll see something nice about Pascal&#8217;s triangle and the number </p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=e+%5Capprox+2.718281828459045...+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='e &#92;approx 2.718281828459045... ' title='e &#92;approx 2.718281828459045... ' class='latex' />
</div>
<h3> The hidden <i>e</i> in Pascal&#8217;s triangle </h3>
<p>In 2012, a guy named Harlan Brothers found the number <i>e</i> hiding in Pascal&#8217;s triangle&#8230; in a very simple way! </p>
<p>If we add up all the numbers in the <i>n</i>th row of Pascal&#8217;s triangle we get <img src='https://s0.wp.com/latex.php?latex=2%5En&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='2^n' title='2^n' class='latex' />.  But what if we take the <i>product</i> of all these numbers?  Let&#8217;s call it <img src='https://s0.wp.com/latex.php?latex=t_n.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n.' title='t_n.' class='latex' />  Then here&#8217;s what Brothers discovered:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Clim_%7Bn+%5Cto+%5Cinfty%7D++%5Cfrac%7Bt_n+t_%7Bn%2B2%7D%7D%7Bt%5E2_%7Bn%2B1%7D%7D+%3D+e+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty}  &#92;frac{t_n t_{n+2}}{t^2_{n+1}} = e } ' title='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty}  &#92;frac{t_n t_{n+2}}{t^2_{n+1}} = e } ' class='latex' />
</div>
<p>This may seem mysterious, but in fact it&#8217;s rather simple once you see the trick.  I&#8217;ll use a nice argument given by Greg Egan.  </p>
<p>We&#8217;ve said <img src='https://s0.wp.com/latex.php?latex=t_n&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n' title='t_n' class='latex' /> is the product of all numbers in the nth row of Pascal&#8217;s triangle.  Just for fun, let&#8217;s divide this by the product of all numbers in the next row:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+u_n+%3D+%5Cfrac%7Bt_n%7D%7Bt_%7Bn%2B1%7D%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ u_n = &#92;frac{t_n}{t_{n+1}} } ' title='&#92;displaystyle{ u_n = &#92;frac{t_n}{t_{n+1}} } ' class='latex' />
</div>
<p>And since this is so much fun, let&#8217;s do it again!  Divide <i>this</i> quantity by its next value:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+v_n+%3D+%5Cfrac%7Bu_n%7D%7Bu_%7Bn%2B1%7D%7D+++%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ v_n = &#92;frac{u_n}{u_{n+1}}   } ' title='&#92;displaystyle{ v_n = &#92;frac{u_n}{u_{n+1}}   } ' class='latex' />
</div>
<p>Now look:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7Bv_n+%3D+%5Cfrac%7Bt_n%2Ft_%7Bn%2B1%7D%7D%7Bt_%7Bn%2B1%7D%2Ft_%7Bn%2B2%7D%7D+%3D+%5Cfrac%7Bt_n+t_%7Bn%2B2%7D%7D%7Bt_%7Bn%2B1%7D%5E2%7D++%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{v_n = &#92;frac{t_n/t_{n+1}}{t_{n+1}/t_{n+2}} = &#92;frac{t_n t_{n+2}}{t_{n+1}^2}  } ' title='&#92;displaystyle{v_n = &#92;frac{t_n/t_{n+1}}{t_{n+1}/t_{n+2}} = &#92;frac{t_n t_{n+2}}{t_{n+1}^2}  } ' class='latex' />
</div>
<p>So, this is the thing that should approach <i>e</i>.</p>
<p>But why does it approach <i>e</i>?  To see this, first take Pascal&#8217;s triangle and divide each number by the number to its lower left.  We get a second triangle of numbers.  Then take each number in this second triangle and divide it by the number to its lower right!  We get a third triangle, like this:</p>
<div align="center">
<img src="https://i1.wp.com/math.ucr.edu/home/baez/mathematical/pascal_row_ratios_egan.png" />
</div>
<p>If you think a bit, you&#8217;ll see:</p>
<p>&bull; In the first triangle, the product of all numbers in the <i>n</i>th row is <img src='https://s0.wp.com/latex.php?latex=t_n.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n.' title='t_n.' class='latex' />  </p>
<p>&bull; In the second, the product of all numbers in the <i>n</i>th row is <img src='https://s0.wp.com/latex.php?latex=u_n.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='u_n.' title='u_n.' class='latex' />  </p>
<p>&bull; In the third, the product of all numbers in the <i>n</i>th row is <img src='https://s0.wp.com/latex.php?latex=v_n.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='v_n.' title='v_n.' class='latex' />  </p>
<p>And look&#8212;there&#8217;s a cool pattern!  <i>In the third triangle, all the numbers in any given row are equal.</i>  In the row with <i>n</i> numbers, all those numbers equal</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%28n%2B1%29%2Fn+%3D+1+%2B+%5Cfrac%7B1%7D%7Bn%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ (n+1)/n = 1 + &#92;frac{1}{n} } ' title='&#92;displaystyle{ (n+1)/n = 1 + &#92;frac{1}{n} } ' class='latex' />
</div>
<p>So, the product of all these numbers is</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Cleft%281+%2B+%5Cfrac%7B1%7D%7Bn%7D%5Cright%29%5En+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;left(1 + &#92;frac{1}{n}&#92;right)^n } ' title='&#92;displaystyle{ &#92;left(1 + &#92;frac{1}{n}&#92;right)^n } ' class='latex' />
</div>
<p>But it&#8217;s a famous fact that</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Clim_%7Bn+%5Cto+%5Cinfty%7D++%5Cleft%281+%2B+%5Cfrac%7B1%7D%7Bn%7D%5Cright%29%5En+%3D+e%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty}  &#92;left(1 + &#92;frac{1}{n}&#92;right)^n = e} ' title='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty}  &#92;left(1 + &#92;frac{1}{n}&#92;right)^n = e} ' class='latex' />
</div>
<p>Some people even use this as a definition of <i>e</i>.   So, </p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Clim_%7Bn+%5Cto+%5Cinfty%7D+v_n+%3D+e%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty} v_n = e} ' title='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty} v_n = e} ' class='latex' />
</div>
<p>which is just what we wanted!</p>
<p><b>Puzzle 1.</b>  Use the formula I mentioned:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B%5Cbinom%7Bn%7D%7Bk%7D+%3D+%5Cfrac%7Bn%21%7D%7Bk%21+%28n-k%29%21%7D+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{&#92;binom{n}{k} = &#92;frac{n!}{k! (n-k)!} }' title='&#92;displaystyle{&#92;binom{n}{k} = &#92;frac{n!}{k! (n-k)!} }' class='latex' />
</div>
<p>to show all the numbers in the same row of the third triangle are equal.</p>
<h3> Triangular numbers </h3>
<div align="center">
<img width="450" src="https://i0.wp.com/upload.wikimedia.org/wikipedia/commons/thumb/1/1c/First_six_triangular_numbers.svg/500px-First_six_triangular_numbers.svg.png" />
</div>
<p>The number of balls in a triangular stack with <i>n</i> balls at the bottom is called the <i>n</i>th triangular number, </p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=T_n+%3D+1+%2B+2+%2B+%5Ccdots+%2B+n+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='T_n = 1 + 2 + &#92;cdots + n ' title='T_n = 1 + 2 + &#92;cdots + n ' class='latex' />
</div>
<p>If you chop a square of balls in half along a diagonal you get a triangle, so <img src='https://s0.wp.com/latex.php?latex=T_n&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='T_n' title='T_n' class='latex' /> is approximately half the <i>n</i>th square number:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+T_n+%5Capprox+%5Cfrac%7Bn%5E2%7D%7B2%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ T_n &#92;approx &#92;frac{n^2}{2} } ' title='&#92;displaystyle{ T_n &#92;approx &#92;frac{n^2}{2} } ' class='latex' />
</div>
<p>But if you chop the square in half this way, the balls on the diagonal get cut in half, so to get the <i>n</i>th triangle number we need to include their other halves:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=T_n+%3D+%5Cdisplaystyle%7B+%5Cfrac%7Bn%5E2%7D%7B2%7D+%2B+%5Cfrac%7Bn%7D%7B2%7D+%3D+%5Cfrac%7Bn%28n%2B1%29%7D%7B2%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='T_n = &#92;displaystyle{ &#92;frac{n^2}{2} + &#92;frac{n}{2} = &#92;frac{n(n+1)}{2} } ' title='T_n = &#92;displaystyle{ &#92;frac{n^2}{2} + &#92;frac{n}{2} = &#92;frac{n(n+1)}{2} } ' class='latex' />
</div>
<p>These numbers go like</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=1%2C+3%2C+6%2C+10%2C+%5Cdots+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='1, 3, 6, 10, &#92;dots ' title='1, 3, 6, 10, &#92;dots ' class='latex' />
</div>
<p>and they are one of the simple pleasures of life, like sunshine and good bread.   Spotting them in a knight-move zigzag pattern in the multiplication table was one of my first truly mathematical experiences.  You can also see them in Pascal&#8217;s triangle:</p>
<div align="center">
<img width="300" src="https://i1.wp.com/upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Pascal%27s_triangle_5.svg/500px-Pascal%27s_triangle_5.svg.png" />
</div>
<p>because</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=T_n+%3D+%5Cdisplaystyle%7B+%5Cbinom%7Bn%2B1%7D%7B2%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='T_n = &#92;displaystyle{ &#92;binom{n+1}{2} } ' title='T_n = &#92;displaystyle{ &#92;binom{n+1}{2} } ' class='latex' />
</div>
<p>But today it&#8217;s time to see how <img src='https://s0.wp.com/latex.php?latex=T_n&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='T_n' title='T_n' class='latex' /> is related to <img src='https://s0.wp.com/latex.php?latex=t_n&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n' title='t_n' class='latex' />, the product of all the numbers in the <i>n</i>th row of Pascal&#8217;s triangle!</p>
<p>If we subtract each triangular number from the the one before it we get the numbers <img src='https://s0.wp.com/latex.php?latex=-n&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='-n' title='-n' class='latex' />, and if we subtract each of <i>these</i> numbers from the one before it we get the number 1.  This should remind you of something we&#8217;ve seen:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+u_n+%3D+%5Cfrac%7Bt_n%7D%7Bt_%7Bn%2B1%7D%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ u_n = &#92;frac{t_n}{t_{n+1}} } ' title='&#92;displaystyle{ u_n = &#92;frac{t_n}{t_{n+1}} } ' class='latex' /></p>
<p><img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+v_n+%3D+%5Cfrac%7Bu_n%7D%7Bu_%7Bn%2B1%7D%7D+++%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ v_n = &#92;frac{u_n}{u_{n+1}}   } ' title='&#92;displaystyle{ v_n = &#92;frac{u_n}{u_{n+1}}   } ' class='latex' /></p>
<p><img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Clim_%7Bn+%5Cto+%5Cinfty%7D+v_n+%3D+e+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty} v_n = e } ' title='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty} v_n = e } ' class='latex' />
</div>
<p>Here we&#8217;re dividing instead of subtracting.  But if take logarithms, we&#8217;ll be subtracting, and we get</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cln%28u_n%29+%3D+%5Cln%28t_n%29+-+%5Cln%28t_%7Bn%2B1%7D%29&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;ln(u_n) = &#92;ln(t_n) - &#92;ln(t_{n+1})' title='&#92;ln(u_n) = &#92;ln(t_n) - &#92;ln(t_{n+1})' class='latex' /></p>
<p><img src='https://s0.wp.com/latex.php?latex=%5Cln%28v_n%29+%3D+%5Cln%28u_n%29+-+%5Cln%28u_%7Bn%2B1%7D%29&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;ln(v_n) = &#92;ln(u_n) - &#92;ln(u_{n+1})' title='&#92;ln(v_n) = &#92;ln(u_n) - &#92;ln(u_{n+1})' class='latex' /></p>
<p><img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Clim_%7Bn+%5Cto+%5Cinfty%7D+%5Cln%28v_n%29+%3D+1+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty} &#92;ln(v_n) = 1 } ' title='&#92;displaystyle{ &#92;lim_{n &#92;to &#92;infty} &#92;ln(v_n) = 1 } ' class='latex' />
</div>
<p>What can we do with this?  Well, suppose <img src='https://s0.wp.com/latex.php?latex=%5Cln%28v_n%29&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;ln(v_n)' title='&#92;ln(v_n)' class='latex' /> were <i>equal</i> to 1, instead of approaching it.  Then <img src='https://s0.wp.com/latex.php?latex=%5Cln%28t_n%29&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;ln(t_n)' title='&#92;ln(t_n)' class='latex' /> could be the <i>n</i>th triangular number&#8230; and we&#8217;d get a cool formula for the product of all numbers in the <i>n</i>th row of Pascal&#8217;s triangle!</p>
<p>But since <img src='https://s0.wp.com/latex.php?latex=%5Cln%28v_n%29&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;ln(v_n)' title='&#92;ln(v_n)' class='latex' /> is just <i>approximately</i> equal to 1, we should only expect an <i>approximate</i> formula for the product of all numbers in the nth row of Pascal&#8217;s triangle:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cln%28t_n%29+%5Capprox+T_n&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;ln(t_n) &#92;approx T_n' title='&#92;ln(t_n) &#92;approx T_n' class='latex' />
</div>
<p>or</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+t_n+%5Capprox+e%5E%7BT_n%7D+%3D+e%5E%7Bn%28n%2B1%29%2F2%7D++%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ t_n &#92;approx e^{T_n} = e^{n(n+1)/2}  }' title='&#92;displaystyle{ t_n &#92;approx e^{T_n} = e^{n(n+1)/2}  }' class='latex' />
</div>
<p>This was my hope.  But how good are these approximations?  I left this as a puzzle on Google+, and then Greg Egan stepped in and solved it.</p>
<p>For starters, he graphed the ratio <img src='https://s0.wp.com/latex.php?latex=%5Cln%28t_n%29%2FT_n%2C&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;ln(t_n)/T_n,' title='&#92;ln(t_n)/T_n,' class='latex' /> and got this:</p>
<div align="center">
<img src="https://i2.wp.com/math.ucr.edu/home/baez/mathematical/pascal_ln(t_n)_over_T_n.jpg" />
</div>
<p>That looks pretty good: it looks like it&#8217;s approaching 1.  But he also graphed the ratio <img src='https://s0.wp.com/latex.php?latex=t_n%2Fe%5E%7BT_n%7D%2C&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n/e^{T_n},' title='t_n/e^{T_n},' class='latex' /> and got this:</p>
<div align="center">
<img src="https://i2.wp.com/math.ucr.edu/home/baez/mathematical/pascal_t_n_over_exp(T_n).jpg" />
</div>
<p>Not so good.  Taking exponentials amplifies the errors.  If we want a good asymptotic formula <img src='https://s0.wp.com/latex.php?latex=t_n%2C&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n,' title='t_n,' class='latex' /> we have to work harder.  And this is what Egan did.</p>
<h3> Digging deeper </h3>
<p>So far we&#8217;ve <i>talked</i> a lot about <img src='https://s0.wp.com/latex.php?latex=t_n%2C&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n,' title='t_n,' class='latex' /> the product of all numbers in the <i>n</i>th row in Pascal&#8217;s triangle&#8230; but we haven&#8217;t actually <i>computed</i> it.  Let&#8217;s try:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cbegin%7Barray%7D%7Bccl%7D++t_n+%26%3D%26+%5Cdisplaystyle%7B+%5Cbinom%7Bn%7D%7B0%7D+%5Ccdot+%5Cbinom%7Bn%7D%7B1%7D+%5Ccdot+%5Ccdots+%5Ccdot+%5Cbinom%7Bn%7D%7Bn%7D+%7D+++%5C%5C++%5C%5C++%26%3D%26+%5Cdisplaystyle%7B+%5Cfrac%7Bn%21%7D%7B0%21+%5Ccdot+n%21%7D+%5Ccdot+%5Cfrac%7Bn%21%7D%7B1%21+%5Ccdot+%28n-1%29%21%7D+%5Ccdot+%5Ccdots+%5Ccdot+%5Cfrac%7Bn%21%7D%7Bn%21+%5Ccdot+0%21%7D+%7D+++%5C%5C++%5C%5C++%26%3D%26+%5Cdisplaystyle%7B+%5Cfrac%7B%28n%21%29%5E%7Bn%2B1%7D%7D%7B%5Cleft%280%21+%5Ccdot+1%21+%5Ccdot+%5Ccdots+%5Ccdot+n%21%5Cright%29%5E2%7D+%7D++%5Cend%7Barray%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;begin{array}{ccl}  t_n &amp;=&amp; &#92;displaystyle{ &#92;binom{n}{0} &#92;cdot &#92;binom{n}{1} &#92;cdot &#92;cdots &#92;cdot &#92;binom{n}{n} }   &#92;&#92;  &#92;&#92;  &amp;=&amp; &#92;displaystyle{ &#92;frac{n!}{0! &#92;cdot n!} &#92;cdot &#92;frac{n!}{1! &#92;cdot (n-1)!} &#92;cdot &#92;cdots &#92;cdot &#92;frac{n!}{n! &#92;cdot 0!} }   &#92;&#92;  &#92;&#92;  &amp;=&amp; &#92;displaystyle{ &#92;frac{(n!)^{n+1}}{&#92;left(0! &#92;cdot 1! &#92;cdot &#92;cdots &#92;cdot n!&#92;right)^2} }  &#92;end{array}' title='&#92;begin{array}{ccl}  t_n &amp;=&amp; &#92;displaystyle{ &#92;binom{n}{0} &#92;cdot &#92;binom{n}{1} &#92;cdot &#92;cdots &#92;cdot &#92;binom{n}{n} }   &#92;&#92;  &#92;&#92;  &amp;=&amp; &#92;displaystyle{ &#92;frac{n!}{0! &#92;cdot n!} &#92;cdot &#92;frac{n!}{1! &#92;cdot (n-1)!} &#92;cdot &#92;cdots &#92;cdot &#92;frac{n!}{n! &#92;cdot 0!} }   &#92;&#92;  &#92;&#92;  &amp;=&amp; &#92;displaystyle{ &#92;frac{(n!)^{n+1}}{&#92;left(0! &#92;cdot 1! &#92;cdot &#92;cdots &#92;cdot n!&#92;right)^2} }  &#92;end{array}' class='latex' />
</div>
<p>So, we&#8217;re seeing the <b>superfactorial</b></p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+0%21+%5Ccdot+1%21+%5Ccdot+%5Ccdots+%5Ccdot+n%21+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ 0! &#92;cdot 1! &#92;cdot &#92;cdots &#92;cdot n! }' title='&#92;displaystyle{ 0! &#92;cdot 1! &#92;cdot &#92;cdots &#92;cdot n! }' class='latex' />
</div>
<p>raise its pretty head.   This is also called the <b><a href="http://en.wikipedia.org/wiki/Barnes_G-function">Barnes G-function</a></b>, presumably by people who want to make it sound more boring.</p>
<p>Actually that&#8217;s not fair: the Barnes G-function generalizes  superfactorials to complex numbers, just as Euler&#8217;s gamma function generalizes factorials.  Unfortunately, Euler made the mistake of defining his gamma function so that</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5CGamma%28n%29+%3D+%28n-1%29%21+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;Gamma(n) = (n-1)! ' title='&#92;Gamma(n) = (n-1)! ' class='latex' />
</div>
<p>when <img src='https://s0.wp.com/latex.php?latex=n+%3D+1%2C+2%2C+3%2C+%5Ccdots.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='n = 1, 2, 3, &#92;cdots.' title='n = 1, 2, 3, &#92;cdots.' class='latex' />   Everyone I trust assures me this was a bad idea, not some deep insight&#8230; but Barnes doubled down on Euler&#8217;s mistake and defined his G-function so that</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=G%28n%29+%3D+0%21+%5Ccdot+1%21+%5Ccdot+%5Ccdots+%5Ccdot+%28n-2%29%21++&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='G(n) = 0! &#92;cdot 1! &#92;cdot &#92;cdots &#92;cdot (n-2)!  ' title='G(n) = 0! &#92;cdot 1! &#92;cdot &#92;cdots &#92;cdot (n-2)!  ' class='latex' />
</div>
<p>So, we&#8217;ll have to be careful when looking up formulas on Wikipedia: the superfactorial of <i>n</i> is <img src='https://s0.wp.com/latex.php?latex=G%28n%2B2%29.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='G(n+2).' title='G(n+2).' class='latex' />  Thus, we have</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+t_n+%3D+%5Cfrac%7B%28n%21%29%5E%7Bn%2B1%7D%7D%7BG%28n%2B2%29%5E2%7D+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ t_n = &#92;frac{(n!)^{n+1}}{G(n+2)^2} }' title='&#92;displaystyle{ t_n = &#92;frac{(n!)^{n+1}}{G(n+2)^2} }' class='latex' />
</div>
<p>so</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Cln%28t_n%29+%3D+%28n%2B1%29+%5Cln+%28n%21%29+-+2+%5Cln+G%28n%2B2%29+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;ln(t_n) = (n+1) &#92;ln (n!) - 2 &#92;ln G(n+2) }' title='&#92;displaystyle{ &#92;ln(t_n) = (n+1) &#92;ln (n!) - 2 &#92;ln G(n+2) }' class='latex' />
</div>
<p>Now, there&#8217;s a great approximate formula for the logarithm of a factorial.  It&#8217;s worth its weight in gold&#8230; or at least silver, so it&#8217;s called <a href="http://en.wikipedia.org/wiki/Stirling%27s_approximation"><b>Stirling&#8217;s formula</b></a>:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Cln%28n%21%29+%3D+n+%5Cln+%28n%29++%5C%3B+-+%5C%3B+n+%5C%3B+%2B+%5C%3B%5Ctfrac%7B1%7D%7B2%7D+%5Cln%282+%5Cpi+n%29+%5C%3B+%2B++%5C%3B+%5Cfrac%7B1%7D%7B12n%7D+%5Ccdots+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;ln(n!) = n &#92;ln (n)  &#92;; - &#92;; n &#92;; + &#92;;&#92;tfrac{1}{2} &#92;ln(2 &#92;pi n) &#92;; +  &#92;; &#92;frac{1}{12n} &#92;cdots } ' title='&#92;displaystyle{ &#92;ln(n!) = n &#92;ln (n)  &#92;; - &#92;; n &#92;; + &#92;;&#92;tfrac{1}{2} &#92;ln(2 &#92;pi n) &#92;; +  &#92;; &#92;frac{1}{12n} &#92;cdots } ' class='latex' />
</div>
<p>where the dots mean stuff that goes to zero when divided by the last term, in the limit <img src='https://s0.wp.com/latex.php?latex=n+%5Cto+%5Cinfty.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='n &#92;to &#92;infty.' title='n &#92;to &#92;infty.' class='latex' /></p>
<p>There&#8217;s also an approximate formula for the logarithm of the superfactorial!  It&#8217;s a bit scary:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cbegin%7Barray%7D%7Bccl%7D+%5Cln+G%28n%2B2%29+%26%3D%26+%5Cdisplaystyle%7B+%5Cleft%28%5Ctfrac%7B1%7D%7B2%7D+%5Cln%28n%2B1%29+-+%5Ctfrac%7B3%7D%7B4%7D%5Cright%29+%28n%2B1%29%5E2+%5C%3B+%2B+%7D++%5C%5C++%5C%5C++%26%26++%5Ctfrac%7B%5Cln%282%5Cpi%29%7D%7B2%7D+%5C%2C+%28n%2B1%29+%5C%3B+-+%5C%5C+%5C%5C+%26%26+%5Ctfrac%7B1%7D%7B12%7D+%5Cln%28n%2B1%29+%5C%3B+%2B+%5C%5C+%5C%5C++%26%26+%5Ctfrac%7B1%7D%7B12%7D+-+%5Cln+A+%5C%3B+%2B+%5Ccdots+++%5Cend%7Barray%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;begin{array}{ccl} &#92;ln G(n+2) &amp;=&amp; &#92;displaystyle{ &#92;left(&#92;tfrac{1}{2} &#92;ln(n+1) - &#92;tfrac{3}{4}&#92;right) (n+1)^2 &#92;; + }  &#92;&#92;  &#92;&#92;  &amp;&amp;  &#92;tfrac{&#92;ln(2&#92;pi)}{2} &#92;, (n+1) &#92;; - &#92;&#92; &#92;&#92; &amp;&amp; &#92;tfrac{1}{12} &#92;ln(n+1) &#92;; + &#92;&#92; &#92;&#92;  &amp;&amp; &#92;tfrac{1}{12} - &#92;ln A &#92;; + &#92;cdots   &#92;end{array} ' title='&#92;begin{array}{ccl} &#92;ln G(n+2) &amp;=&amp; &#92;displaystyle{ &#92;left(&#92;tfrac{1}{2} &#92;ln(n+1) - &#92;tfrac{3}{4}&#92;right) (n+1)^2 &#92;; + }  &#92;&#92;  &#92;&#92;  &amp;&amp;  &#92;tfrac{&#92;ln(2&#92;pi)}{2} &#92;, (n+1) &#92;; - &#92;&#92; &#92;&#92; &amp;&amp; &#92;tfrac{1}{12} &#92;ln(n+1) &#92;; + &#92;&#92; &#92;&#92;  &amp;&amp; &#92;tfrac{1}{12} - &#92;ln A &#92;; + &#92;cdots   &#92;end{array} ' class='latex' />
</div>
<p>where the dots mean stuff that actually goes to zero as <img src='https://s0.wp.com/latex.php?latex=n+%5Cto+%5Cinfty.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='n &#92;to &#92;infty.' title='n &#92;to &#92;infty.' class='latex' /></p>
<p>What&#8217;s <i>A</i>?  It&#8217;s the <a href="http://en.wikipedia.org/wiki/Glaisher%E2%80%93Kinkelin_constant"><b>Glaisher&#8211;Kinkelin constant</b></a>!  If you&#8217;re tired of memorizing digits of pi and need a change of pace, you can look up the first 20,000 digits of the Glaisher&#8211;Kinkelin constant <a href="http://mpmath.googlecode.com/svn/data/glaisher.txt">here</a>, but <i>roughly</i> we have</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=A+%5Capprox+1.282427129100622636875342...+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='A &#92;approx 1.282427129100622636875342... ' title='A &#92;approx 1.282427129100622636875342... ' class='latex' />
</div>
<p>Of course most mathematicians don&#8217;t care much about the <i>digits</i>; what we really want to know is what this constant <i>means!</i></p>
<p>Euler, who did some wacky nonrigorous calculations, once argued that</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+1+%2B+2+%2B+3+%2B+%5Ccdots+%3D+-%5Ctfrac%7B1%7D%7B12%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ 1 + 2 + 3 + &#92;cdots = -&#92;tfrac{1}{12} } ' title='&#92;displaystyle{ 1 + 2 + 3 + &#92;cdots = -&#92;tfrac{1}{12} } ' class='latex' />
</div>
<p>Riemann made this rigorous by defining</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Czeta%28s%29+%3D+1%5E%7B-s%7D+%2B+2%5E%7B-s%7D+%2B+3%5E%7B-s%7D+%2B+%5Ccdots+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;zeta(s) = 1^{-s} + 2^{-s} + 3^{-s} + &#92;cdots } ' title='&#92;displaystyle{ &#92;zeta(s) = 1^{-s} + 2^{-s} + 3^{-s} + &#92;cdots } ' class='latex' />
</div>
<p>which converges when <img src='https://s0.wp.com/latex.php?latex=%5Cmathrm%7BRe%7D%28s%29+%3E+1%2C&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;mathrm{Re}(s) &gt; 1,' title='&#92;mathrm{Re}(s) &gt; 1,' class='latex' /> and then analytically continuing this to other values of <img src='https://s0.wp.com/latex.php?latex=s.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='s.' title='s.' class='latex' />  He found that indeed</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Czeta%28-1%29+%3D+-%5Ctfrac%7B1%7D%7B12%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;zeta(-1) = -&#92;tfrac{1}{12} } ' title='&#92;displaystyle{ &#92;zeta(-1) = -&#92;tfrac{1}{12} } ' class='latex' />
</div>
<p>This fact has many marvelous ramifications: for example, it&#8217;s why bosonic string theory works best in 24 dimensions!  It&#8217;s also connected to the <img src='https://s0.wp.com/latex.php?latex=%5Ctfrac%7B1%7D%7B12n%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;tfrac{1}{12n}' title='&#92;tfrac{1}{12n}' class='latex' /> term in Stirling&#8217;s formula.</p>
<p>But anyway, we might wonder what happens if we compute <img src='https://s0.wp.com/latex.php?latex=%5Czeta%28s%29&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;zeta(s)' title='&#92;zeta(s)' class='latex' /> for <img src='https://s0.wp.com/latex.php?latex=s&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='s' title='s' class='latex' /> <i>near</i> -1.  This is where the Glaisher&#8211;Kinkelin constant shows up, because if we try a Taylor series we get</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Czeta%27%28-1%29+%3D+%5Ctfrac%7B1%7D%7B12%7D+-+%5Cln+A+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;zeta&#039;(-1) = &#92;tfrac{1}{12} - &#92;ln A } ' title='&#92;displaystyle{ &#92;zeta&#039;(-1) = &#92;tfrac{1}{12} - &#92;ln A } ' class='latex' />
</div>
<p>To me, this means that <img src='https://s0.wp.com/latex.php?latex=%5Ctfrac%7B1%7D%7B12%7D+-+%5Cln+A+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;tfrac{1}{12} - &#92;ln A ' title='&#92;tfrac{1}{12} - &#92;ln A ' class='latex' /> is more fundamental than <i>A</i> itself, and indeed you&#8217;ll see it&#8217;s this combination that shows up in the approximate formula for superfactorials.  So, we can simplify that formula a bit:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cbegin%7Barray%7D%7Bccl%7D+%5Cln+G%28n%2B2%29+%26%3D%26+%5Cdisplaystyle%7B+%5Cleft%28%5Ctfrac%7B1%7D%7B2%7D+%5Cln%28n%2B1%29+-+%5Ctfrac%7B3%7D%7B4%7D%5Cright%29+%28n%2B1%29%5E2+%5C%3B+%2B+%7D++%5C%5C++%5C%5C++%26%26++%5Ctfrac%7B%5Cln%282%5Cpi%29%7D%7B2%7D+%5C%2C+%28n%2B1%29+%5C%3B+-++%5C%5C+%5C%5C+%26%26++%5Ctfrac%7B1%7D%7B12%7D+%5Cln%28n%2B1%29+%5C%3B+%2B+%5C%5C+%5C%5C++%26%26+++%5Czeta%27%28-1%29+%5C%3B+%2B+%5Ccdots+++%5Cend%7Barray%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;begin{array}{ccl} &#92;ln G(n+2) &amp;=&amp; &#92;displaystyle{ &#92;left(&#92;tfrac{1}{2} &#92;ln(n+1) - &#92;tfrac{3}{4}&#92;right) (n+1)^2 &#92;; + }  &#92;&#92;  &#92;&#92;  &amp;&amp;  &#92;tfrac{&#92;ln(2&#92;pi)}{2} &#92;, (n+1) &#92;; -  &#92;&#92; &#92;&#92; &amp;&amp;  &#92;tfrac{1}{12} &#92;ln(n+1) &#92;; + &#92;&#92; &#92;&#92;  &amp;&amp;   &#92;zeta&#039;(-1) &#92;; + &#92;cdots   &#92;end{array} ' title='&#92;begin{array}{ccl} &#92;ln G(n+2) &amp;=&amp; &#92;displaystyle{ &#92;left(&#92;tfrac{1}{2} &#92;ln(n+1) - &#92;tfrac{3}{4}&#92;right) (n+1)^2 &#92;; + }  &#92;&#92;  &#92;&#92;  &amp;&amp;  &#92;tfrac{&#92;ln(2&#92;pi)}{2} &#92;, (n+1) &#92;; -  &#92;&#92; &#92;&#92; &amp;&amp;  &#92;tfrac{1}{12} &#92;ln(n+1) &#92;; + &#92;&#92; &#92;&#92;  &amp;&amp;   &#92;zeta&#039;(-1) &#92;; + &#92;cdots   &#92;end{array} ' class='latex' />
</div>
<p>Now, let&#8217;s use this together with Stirling&#8217;s formula to estimate the logarithm of the product of all numbers in the <i>n</i>th row of Pascal&#8217;s triangle.  Remember, that&#8217;s</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+%5Cln%28t_n%29+%3D+%28n%2B1%29+%5Cln+%28n%21%29+-+2+%5Cln+G%28n%2B2%29+%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ &#92;ln(t_n) = (n+1) &#92;ln (n!) - 2 &#92;ln G(n+2) }' title='&#92;displaystyle{ &#92;ln(t_n) = (n+1) &#92;ln (n!) - 2 &#92;ln G(n+2) }' class='latex' />
</div>
<p>So, we get</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cbegin%7Barray%7D%7Bccl%7D+%5Cln%28t_n%29+%26%5Capprox%26+%5Cdisplaystyle%7B%28n%2B1%29%5CBig%5B+n+%5Cln%28n%29+-+n+%2B+%5Ctfrac%7B1%7D%7B2%7D+%5Cln%282+%5Cpi+n%29+%2B+%5Cfrac%7B1%7D%7B12n%7D+%5CBig%5D+%7D+%5C%5C++%5C%5C++%26%26+-+%5Cdisplaystyle%7B+%5CBig%5B++%5Cleft%28+%5Cln%28n%2B1%29+-+%5Ctfrac%7B3%7D%7B2%7D%5Cright%29+%28n%2B1%29%5E2+%2B+%5Cln%282%5Cpi%29+%5Ccdot+%28n%2B1%29+-%7D+%5C%5C+%5C%5C++%26%26+%5Cquad+%5Cdisplaystyle%7B+++%5Ctfrac%7B1%7D%7B6%7D+%5Cln%28n%2B1%29+%2B+2%5Czeta%27%28-1%29+%5CBig%5D++%7D++%5Cend%7Barray%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;begin{array}{ccl} &#92;ln(t_n) &amp;&#92;approx&amp; &#92;displaystyle{(n+1)&#92;Big[ n &#92;ln(n) - n + &#92;tfrac{1}{2} &#92;ln(2 &#92;pi n) + &#92;frac{1}{12n} &#92;Big] } &#92;&#92;  &#92;&#92;  &amp;&amp; - &#92;displaystyle{ &#92;Big[  &#92;left( &#92;ln(n+1) - &#92;tfrac{3}{2}&#92;right) (n+1)^2 + &#92;ln(2&#92;pi) &#92;cdot (n+1) -} &#92;&#92; &#92;&#92;  &amp;&amp; &#92;quad &#92;displaystyle{   &#92;tfrac{1}{6} &#92;ln(n+1) + 2&#92;zeta&#039;(-1) &#92;Big]  }  &#92;end{array}' title='&#92;begin{array}{ccl} &#92;ln(t_n) &amp;&#92;approx&amp; &#92;displaystyle{(n+1)&#92;Big[ n &#92;ln(n) - n + &#92;tfrac{1}{2} &#92;ln(2 &#92;pi n) + &#92;frac{1}{12n} &#92;Big] } &#92;&#92;  &#92;&#92;  &amp;&amp; - &#92;displaystyle{ &#92;Big[  &#92;left( &#92;ln(n+1) - &#92;tfrac{3}{2}&#92;right) (n+1)^2 + &#92;ln(2&#92;pi) &#92;cdot (n+1) -} &#92;&#92; &#92;&#92;  &amp;&amp; &#92;quad &#92;displaystyle{   &#92;tfrac{1}{6} &#92;ln(n+1) + 2&#92;zeta&#039;(-1) &#92;Big]  }  &#92;end{array}' class='latex' />
</div>
<p>and exponentiating this gives a good approximation to <img src='https://s0.wp.com/latex.php?latex=t_n.&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n.' title='t_n.' class='latex' />  </p>
<p>Here is a graph of <img src='https://s0.wp.com/latex.php?latex=t_n&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='t_n' title='t_n' class='latex' /> divided by this approximation, created by Egan:</p>
<div align="center">
<img src="https://i1.wp.com/math.ucr.edu/home/baez/mathematical/pascal_t_n_over_approximation.png" />
</div>
<p>As you can see, the ratio goes to 1 quite nicely!</p>
<p>So, we&#8217;ve seem some nice relationships between these things:</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=1+%2B+2+%2B+%5Ccdots+%2B+n+%3D+T_n+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='1 + 2 + &#92;cdots + n = T_n ' title='1 + 2 + &#92;cdots + n = T_n ' class='latex' /></p>
<p><img src='https://s0.wp.com/latex.php?latex=1+%5Ccdot+2+%5Ccdot+%5Ccdots+%5Ccdot+n+%3D+n%21+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='1 &#92;cdot 2 &#92;cdot &#92;cdots &#92;cdot n = n! ' title='1 &#92;cdot 2 &#92;cdot &#92;cdots &#92;cdot n = n! ' class='latex' /></p>
<p><img src='https://s0.wp.com/latex.php?latex=%5Cbinom%7Bn%7D%7B1%7D+%5Ccdot+%5Cbinom%7Bn%7D%7B2%7D+%5Ccdot+%5Ccdots+%5Ccdot+%5Cbinom%7Bn%7D%7Bn%7D+%3D+t_n+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;binom{n}{1} &#92;cdot &#92;binom{n}{2} &#92;cdot &#92;cdots &#92;cdot &#92;binom{n}{n} = t_n ' title='&#92;binom{n}{1} &#92;cdot &#92;binom{n}{2} &#92;cdot &#92;cdots &#92;cdot &#92;binom{n}{n} = t_n ' class='latex' /></p>
<p><img src='https://s0.wp.com/latex.php?latex=1%21+%5Ccdot+2%21+%5Ccdot+%5Ccdots+%5Ccdot+n%21+%3D+G%28n%2B2%29+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='1! &#92;cdot 2! &#92;cdot &#92;cdots &#92;cdot n! = G(n+2) ' title='1! &#92;cdot 2! &#92;cdot &#92;cdots &#92;cdot n! = G(n+2) ' class='latex' /> </p>
<p><img src='https://s0.wp.com/latex.php?latex=%5Cfrac%7B1%7D%7B0%21%7D+%2B%5Cfrac%7B1%7D%7B1%21%7D+%2B+%5Cfrac%7B1%7D%7B2%21%7D+%2B+%5Cfrac%7B1%7D%7B3%21%7D+%2B+%5Ccdots+%3D+e&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;frac{1}{0!} +&#92;frac{1}{1!} + &#92;frac{1}{2!} + &#92;frac{1}{3!} + &#92;cdots = e' title='&#92;frac{1}{0!} +&#92;frac{1}{1!} + &#92;frac{1}{2!} + &#92;frac{1}{3!} + &#92;cdots = e' class='latex' />
</div>
<p>and Euler&#8217;s wacky formula</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+1+%2B+2+%2B+3+%2B+%5Ccdots+%3D+-%5Ctfrac%7B1%7D%7B12%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ 1 + 2 + 3 + &#92;cdots = -&#92;tfrac{1}{12} } ' title='&#92;displaystyle{ 1 + 2 + 3 + &#92;cdots = -&#92;tfrac{1}{12} } ' class='latex' />
</div>
<p><b>Puzzle 2.</b> Can you take the formula</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cbegin%7Barray%7D%7Bccl%7D+%5Cln%28t_n%29+%26%5Capprox%26+%5Cdisplaystyle%7B%28n%2B1%29%5CBig%5B+n+%5Cln%28n%29+-+n+%2B+%5Ctfrac%7B1%7D%7B2%7D+%5Cln%282+%5Cpi+n%29+%2B+%5Cfrac%7B1%7D%7B12n%7D+%5CBig%5D+%7D+%5C%5C++%5C%5C++%26%26+-+%5Cdisplaystyle%7B+%5CBig%5B++%5Cleft%28+%5Cln%28n%2B1%29+-+%5Ctfrac%7B3%7D%7B2%7D%5Cright%29+%28n%2B1%29%5E2+%2B+%5Cln%282%5Cpi%29+%5Ccdot+%28n%2B1%29+-%7D+%5C%5C+%5C%5C++%26%26+%5Cquad+%5Cdisplaystyle%7B+++%5Ctfrac%7B1%7D%7B6%7D+%5Cln%28n%2B1%29+%2B+2%5Czeta%27%28-1%29+%5CBig%5D++%7D++%5Cend%7Barray%7D&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;begin{array}{ccl} &#92;ln(t_n) &amp;&#92;approx&amp; &#92;displaystyle{(n+1)&#92;Big[ n &#92;ln(n) - n + &#92;tfrac{1}{2} &#92;ln(2 &#92;pi n) + &#92;frac{1}{12n} &#92;Big] } &#92;&#92;  &#92;&#92;  &amp;&amp; - &#92;displaystyle{ &#92;Big[  &#92;left( &#92;ln(n+1) - &#92;tfrac{3}{2}&#92;right) (n+1)^2 + &#92;ln(2&#92;pi) &#92;cdot (n+1) -} &#92;&#92; &#92;&#92;  &amp;&amp; &#92;quad &#92;displaystyle{   &#92;tfrac{1}{6} &#92;ln(n+1) + 2&#92;zeta&#039;(-1) &#92;Big]  }  &#92;end{array}' title='&#92;begin{array}{ccl} &#92;ln(t_n) &amp;&#92;approx&amp; &#92;displaystyle{(n+1)&#92;Big[ n &#92;ln(n) - n + &#92;tfrac{1}{2} &#92;ln(2 &#92;pi n) + &#92;frac{1}{12n} &#92;Big] } &#92;&#92;  &#92;&#92;  &amp;&amp; - &#92;displaystyle{ &#92;Big[  &#92;left( &#92;ln(n+1) - &#92;tfrac{3}{2}&#92;right) (n+1)^2 + &#92;ln(2&#92;pi) &#92;cdot (n+1) -} &#92;&#92; &#92;&#92;  &amp;&amp; &#92;quad &#92;displaystyle{   &#92;tfrac{1}{6} &#92;ln(n+1) + 2&#92;zeta&#039;(-1) &#92;Big]  }  &#92;end{array}' class='latex' />
</div>
<p>and massage it until it looks like <img src='https://s0.wp.com/latex.php?latex=n%28n%2B1%29%2F2&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='n(n+1)/2' title='n(n+1)/2' class='latex' /> plus &#8216;correction terms&#8217;?  How big are these correction terms?</p>
<h3> References </h3>
<p>Any errors in the formulas above are my fault.  Here are the papers that first squeezed <i>e</i> out of Pascal&#8217;s triangle:</p>
<p>&bull; Harlan J. Brothers, Pascal&#8217;s triangle: The hidden stor-e, <i>The Mathematical Gazette</i>, March 2012, 145.</p>
<p>&bull; Harlan J. Brothers, Finding <i>e</i> in Pascal&#8217;s triangle, <i>Mathematics Magazine</i> <b>85</b> (2012), 51﻿.</p>
<p>I learned the idea from here, thanks to Richard Elwes:</p>
<p>&bull; Alexander Bogomolny, <a href="http://www.cut-the-knot.org/arithmetic/algebra/HarlanBrothers.shtml">e in the Pascal Triangle</a>, <i>Interactive Mathematics Miscellany and Puzzles</i>.</p>
<p>For how Euler derived his crazy identity</p>
<div align="center">
<img src='https://s0.wp.com/latex.php?latex=%5Cdisplaystyle%7B+1+%2B+2+%2B+3+%2B+%5Ccdots+%3D+-%5Ctfrac%7B1%7D%7B12%7D+%7D+&#038;bg=ffffff&#038;fg=000&#038;s=0' alt='&#92;displaystyle{ 1 + 2 + 3 + &#92;cdots = -&#92;tfrac{1}{12} } ' title='&#92;displaystyle{ 1 + 2 + 3 + &#92;cdots = -&#92;tfrac{1}{12} } ' class='latex' />
</div>
<p>and how it&#8217;s relevant to string theory, try:</p>
<p>&bull; John Baez, <a href="http://math.ucr.edu/home/baez/numbers/#24">My favorite numbers: 24</a>.</p>
]]></html><thumbnail_url><![CDATA[https://i1.wp.com/upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Pascal%27s_triangle_5.svg/500px-Pascal%27s_triangle_5.svg.png?fit=440%2C330]]></thumbnail_url><thumbnail_height><![CDATA[316]]></thumbnail_height><thumbnail_width><![CDATA[440]]></thumbnail_width></oembed>