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