login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A332325 Number of Maclaurin polynomials p(2m,x) of cos x that have exactly n positive zeros. 3
3, 4, 4, 4, 4, 5, 4, 4, 4, 4, 5, 4, 4, 5, 4, 4, 4, 4, 5, 4, 4, 5, 4, 4, 5, 4, 4, 4, 4, 5, 4, 4, 5, 4, 4, 4, 4, 5, 4, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Maclaurin polynomial p(2m,x) is 1 - x^2/2! + x^4/4! + ... + (-1)^m x^(2m)/(2m)!.
LINKS
EXAMPLE
a(1) counts these values of 2m: 2, 6, and 10. The single positive zeros of p(2,x), p(6,x), and p(10,x) are 1.41421..., 1.56990..., and 1.57079..., respectively.
MATHEMATICA
z = 30; p[m_, x_] := Normal[Series[Cos[x], {x, 0, m }]];
t[n_] := x /. NSolve[p[n, x] == 0, x, z];
u[n_] := Select[t[n], Im[#] == 0 && # > 0 &];
v = Table[Length[u[n]], {n, 2, 100, 2}]
Table[Count[v, n], {n, 1, 10}]
CROSSREFS
Sequence in context: A288177 A349992 A064042 * A194882 A096343 A351911
KEYWORD
nonn,hard,more
AUTHOR
Clark Kimberling, Feb 11 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 08:08 EDT 2024. Contains 371782 sequences. (Running on oeis4.)