A320961 The exponential limit of (-x)!, rounded to the nearest integer.
1, 1, 4, 27, 353, 6128, 145159, 4402407, 166608593, 7666343436, 420646243820, 27079750092637, 2018074017351900, 172131994564410026, 16641769389384512884, 1808431867178308597550, 219272140061011055068448, 29473880023661693302772550, 4366902281695075479226089449
Offset: 0
Keywords
Crossrefs
Programs
-
Maple
explim := (len, f) -> seq(combinat:-bell(n)*((D@@n)(f))(0), n=0..len): explim(18, x -> (-x)!): map(round, [evalf(%, 46)]);
-
Mathematica
m = 19; CoefficientList[(-x)!+O[x]^m, x]*Range[0, m-1]!*BellB[Range[0, m-1]] // Round (* Jean-François Alcover, Jul 21 2019 *)
Comments