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