cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A180047 Coefficient triangle of the numerators of the (n-th convergents to) the continued fraction w/(1 + w/(2 + w/(3 + w/(...)))).

Original entry on oeis.org

0, 0, 1, 0, 2, 0, 6, 1, 0, 24, 6, 0, 120, 36, 1, 0, 720, 240, 12, 0, 5040, 1800, 120, 1, 0, 40320, 15120, 1200, 20, 0, 362880, 141120, 12600, 300, 1, 0, 3628800, 1451520, 141120, 4200, 30, 0, 39916800, 16329600, 1693440, 58800, 630, 1, 0, 479001600
Offset: 0

Views

Author

Wouter Meeussen, Aug 08 2010

Keywords

Comments

Equivalence to the binomial formula needs formal proof. This c.f. converges to A052119 = 0.697774657964.. = BesselI(1,2)/BesselI(0,2) for w = 1.

Examples

			Triangle starts:
  0;
  0,   1;
  0,   2;
  0,   6,   1;
  0,  24,   6;
  0, 120,  36,  1;
  0, 720, 240, 12;
The numerator of w/(1+w/(2+w/(3+w/(4+w/5)))) equals 120*w + 36*w^2 + w^3.
		

Crossrefs

Programs

  • Mathematica
    Table[CoefficientList[Numerator[Together[Fold[w/(#2+#1) &,Infinity,Reverse @ Table[k,{k,1,n}]]]],w],{n,16}]; (* or equivalently *) Table[(n-m+1)!/m! *Binomial[n-m,m-1], {n,0,16}, {m,0,Floor[n/2+1/2]}]

Formula

T(n,m) = (n-m+1)!/m!*binomial(n-m, m-1) for n >= 0, 0 <= m <= (n+1)/2.