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”).

A335983
a(n) = least k such that n < Integral_{x=1/k..1} Gamma(x) dx.
1
4, 9, 26, 70, 190, 516, 1403, 3815, 10370
OFFSET
1,1
COMMENTS
Does the sequence a(n+1)/a(n) converge?
MATHEMATICA
t = Table[{k, NIntegrate[Gamma[t], {t, 1/k, 1}]}, {k, 1, 12500}];
f = Flatten[Table[Select[t, #[[2]] > n &, 1], {n, 1, 9}]];
Table[f[[2 k - 1]], {k, 1, 9}]
PROG
(PARI) a(n) = my(k=1); while (intnum(x=1/k, 1, gamma(x)) <= n, k++); k; \\ Michel Marcus, Jul 04 2020
CROSSREFS
Cf. A335985.
Sequence in context: A216134 A226908 A328657 * A113682 A291064 A145855
KEYWORD
nonn,more
AUTHOR
Clark Kimberling, Jul 03 2020
STATUS
approved