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.

A256168 Coefficients in asymptotic expansion of sequence A052186.

Original entry on oeis.org

1, -2, 1, -1, -9, -59, -474, -4560, -50364, -625385, -8622658, -130751886, -2163331779, -38793751015, -749691306018, -15535914341831, -343749787006758, -8089725377931547, -201801866906374263, -5319643146604299835, -147774950436327236681
Offset: 0

Views

Author

Vaclav Kotesovec, Mar 17 2015

Keywords

Comments

For k > 2 is a(k) negative.

Examples

			A052186(n) / n! ~ 1 - 2/n + 1/n^2 - 1/n^3 - 9/n^4 - 59/n^5 - 474/n^6 - ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 30; b = CoefficientList[Assuming[Element[x, Reals], Series[E^(2/x) / (ExpIntegralEi[1/x] + E^(1/x))^2, {x, 0, nmax}]], x]; Flatten[{1, Table[Sum[b[[k+1]]*StirlingS2[n-1, k-1], {k, 1, n}], {n, 1, nmax}]}] (* Vaclav Kotesovec, Aug 03 2015 *)

Formula

a(k) ~ -(k-1)! / (log(2))^k.