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