OFFSET
1,2
COMMENTS
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
Simon Baker, On small bases which admit countably many expansions, Journal of Number Theory, Volume 147, February 2015, Pages 515-532.
Nikita Sidorov, Expansions in non-integer bases: Lower, middle and top orders, Journal of Number Theory, Volume 129, Issue 4, April 2009, Pages 741-754. See Proposition 2.4 p. 744.
Yuru Zou, Derong Kong, On a problem of countable expansions, Journal of Number Theory, Volume 158, January 2016, Pages 134-150. See Theorem 1.1 p. 135.
EXAMPLE
Greatest real zero = 1.710644095...
MATHEMATICA
r = x /. NSolve[x^4 - 2 x^2 - x - 1 == 0, x, 10000][[4]];
RealDigits[r][[1]]; (* A298853 *)
RealDigits[Root[ x^4-2*x^2-x-1, 2], 10, 120][[1]] (* Harvey P. Dale, May 23 2019 *)
PROG
(PARI) solve(x=1, 2, x^4-2*x^2-x-1) \\ Michel Marcus, Apr 14 2020
(PARI) polrootsreal(x^4 - 2*x^2 - x - 1)[2] \\ Charles R Greathouse IV, May 15 2020
CROSSREFS
KEYWORD
AUTHOR
Clark Kimberling, Feb 13 2018
STATUS
approved