A332329 Decimal expansion of the next-to-least positive zero of the 4th Maclaurin polynomial of cos x.
3, 0, 7, 6, 3, 7, 8, 0, 0, 2, 6, 4, 1, 7, 0, 3, 0, 9, 6, 9, 6, 6, 0, 2, 5, 8, 6, 3, 9, 3, 6, 7, 2, 2, 4, 1, 9, 3, 1, 8, 5, 9, 0, 8, 5, 7, 7, 2, 5, 0, 5, 9, 6, 2, 5, 4, 4, 0, 6, 3, 4, 2, 1, 3, 1, 6, 7, 5, 6, 6, 3, 1, 6, 9, 2, 1, 2, 3, 5, 9, 3, 1, 7, 5, 7, 2
Offset: 1
Examples
Next-to-least positive zero = 3.0763780026417030969660258639367224
Programs
-
Mathematica
z = 150; p[n_, x_] := Normal[Series[Cos[x], {x, 0, n}]] t = x /. NSolve[p[4, x] == 0, x, z][[4]] u = RealDigits[t][[1]] Plot[Evaluate[p[4, x]], {x, -1, 4}]
Comments