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.

A306038 Expansion of e.g.f. (1 + x)/(1 - log(1 + x)).

Original entry on oeis.org

1, 2, 3, 5, 12, 34, 122, 482, 2328, 11640, 71952, 424368, 3312240, 21357504, 217045488, 1351338864, 19990187520, 89379824256, 2631270916224, 892036259712, 507945420198144, -3068802187635456, 142961233091051520, -1849617314640322560, 55640352746480440320
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 17 2018

Keywords

Examples

			(1 + x)/(1 - log(1 + x)) = 1 + 2*x + 3*x^2/2! + 5*x^3/3! + 12*x^4/4! + 34*x^5/5! + 122*x^6/6! + ...
		

Crossrefs

Programs

  • Maple
    S:= series((1+x)/(1-log(1+x)),x,51):
    seq(coeff(S,x,j)*j!,j=0..50); # Robert Israel, Jun 19 2018
  • Mathematica
    nmax = 24; CoefficientList[Series[(1 + x)/(1 - Log[1 + x]), {x, 0, nmax}], x] Range[0, nmax]!
    FullSimplify[Table[Sum[StirlingS1[n, k] E Gamma[1 + k, 1], {k, 0, n}], {n, 0, 24}]]

Formula

a(n) = Sum_{k=0..n} Stirling1(n,k)*A000522(k).