OFFSET
1,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000 (127 terms corrected by Gerhard Kirchner)
FORMULA
a(n) = floor(exp(2*n-gamma)/4+1/8), for all n > 1. - M. F. Hasler and Robert G. Wilson v, Jan 22 2017
a(n) = floor(exp(2*n-gamma)/4), for all n > 1, see correction in A092315, Gerhard Kirchner, Jul 25 2020
MATHEMATICA
a[n_] := Floor[(Exp[2 n - EulerGamma] + 1/2)/4]; a[1] = 0; Array[a, 20] (* Robert G. Wilson v, Jan 25 2017 *)
PROG
(PARI) A092318=n->floor(exp(2*n-Euler)/4+1/8)-(n<2) \\ Cf. comments in A092315. - M. F. Hasler, Jan 24 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 16 2004
EXTENSIONS
More terms (computed from A092317) from M. F. Hasler, Jan 22 2017
a(17) corrected by Gerhard Kirchner, Jul 26 2020
STATUS
approved