Searching the numerators and denominators in the Online encyclopedia of integer sequences (OEIS):
the sequence might be un=H(n)/n! where H(n)=∑k=1..n1/k is the n-th harmonic number.
sage: def u(n):
....: return sum(1/i for i in (1 .. n))/factorial(n)
....:
sage: [u(n) for n in (1 .. 8)]
[1, 3/4, 11/36, 25/288, 137/7200, 49/14400, 121/235200, 761/11289600]
There are of course many other "natural" possibilities.