OFFSET
0,3
COMMENTS
The exponential limit of a function is defined in A320956. Applied to (-x)! Maple returns a sequence of sums of Zeta values, powers of Pi, powers of Euler's gamma, etc.. The sequence starts: 1, gamma, (1/3)*Pi^2 + 2* gamma^2, 10*Zeta(3) + (5/2)*Pi^2*gamma + 5*gamma^3, ... These sums, rounded to the nearest integer, give the sequence.
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 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Nov 07 2018
STATUS
approved