A298815 Decimal expansion of the greatest real zero of x^8 - 4*x^6 + 6*x^4 - 4*x^2 - x + 1.
1, 4, 4, 8, 0, 9, 5, 8, 3, 8, 6, 0, 9, 6, 4, 1, 1, 3, 2, 5, 8, 3, 8, 6, 9, 9, 9, 6, 8, 1, 0, 7, 3, 3, 6, 4, 6, 2, 2, 7, 9, 6, 5, 2, 7, 7, 5, 8, 6, 5, 5, 5, 7, 1, 5, 1, 8, 3, 7, 9, 7, 3, 4, 9, 7, 1, 8, 5, 8, 4, 5, 3, 2, 1, 0, 6, 9, 1, 1, 6, 3, 7, 8, 8, 4, 3
Offset: 1
Examples
greatest real zero = 1.4480958386096...
Links
- Clark Kimberling, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
r = x /. NSolve[x^8 - 4 x^6 + 6 x^4 - 4 x^2 - x + 1 == 0, x, 10000][[8]]; RealDigits[r][[1]]; (* A298815 *)
Comments