OFFSET
0,2
COMMENTS
The numbers (3n*Pi/4)^(2k)/(2 k)! are the coefficients in the Maclaurin series for cos x when x = 3n*Pi/4. If m>a(n), then (3m*Pi/4)^(2k)/(2 k)! < 1.
FORMULA
a(n) ~ 3*Pi*exp(1)*n/8 - log(n)/4. - Vaclav Kotesovec, Oct 13 2024
MATHEMATICA
a[n_] := Select[Range[200], (3n Pi/4)^(2 #)/(2 #)! < 1 &, 1];
Flatten[Table[a[n], {n, 0, 200}]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Oct 12 2024
STATUS
approved