login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A292751
a(n) = n!*A063019(n).
1
0, 1, 2, 6, 24, 240, 5040, 110880, 2298240, 47900160, 1117670400, 31654022400, 1064820556800, 39404587622400, 1532420002713600, 62512065487872000, 2723498636931072000, 128376129298120704000, 6524556605528113152000, 352829667414210674688000
OFFSET
0,3
LINKS
John Engbers, David Galvin, Clifford Smyth, Restricted Stirling and Lah numbers and their inverses, arXiv:1610.05803 [math.CO], 2016.
MATHEMATICA
nmax = 20; CoefficientList[InverseSeries[x - x^2 + x^3 - x^4 + O[x]^(nmax+1), x], x]*Range[0, nmax]! (* Jean-François Alcover, Jan 21 2019 *)
PROG
(PARI) seq(n)=Vec(serlaplace(serreverse(x - x^2 + x^3 - x^4 + O(x*x^n))), -(n+1)) \\ Andrew Howroyd, Nov 11 2018
CROSSREFS
Cf. A063019.
Sequence in context: A052692 A052723 A114778 * A274098 A324141 A277423
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 22 2017
EXTENSIONS
Offset changed to zero and more terms added by Robert Price, Oct 19 2017
STATUS
approved