OFFSET
1,2
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..1971
EXAMPLE
Constant x = 1.7767914254 8765842099 7295125934 3751657100 4017014991 1002131974 4535225732 9321570657 9706460392 2109445017 4890160620 5702665489 ...
The integer floor of the powers of the constant x begin:
1=[x], 3=[x^2], 5=[x^3], 9=[x^4], 17=[x^5], 31=[x^6], 55=[x^7], 99=[x^8], 176=[x^9], 313=[x^10], ..., A066173(n) = [x^n], ...
where
x = 1/1 + 1/3 + 1/5 + 1/9 + 1/17 + 1/31 + 1/55 + 1/99 + 1/176 + 1/313 + 1/557 + 1/990 + 1/1759 + 1/3125 + 1/5553 + 1/9866 +...+ 1/[x^n] +...
MATHEMATICA
digits = 100; Clear[s]; s[m_] := s[m] = x /. FindRoot[x == Sum[1/Floor[x^n], {n, 1, m}], {x, 2, 1, 2}, WorkingPrecision -> digits]; s[0] = 0; dm = 100; s[m = dm]; While[ RealDigits[s[m], 10, digits][[1]] != RealDigits[s[m - dm], 10, digits][[1]], m = m + dm; Print[m, " terms"]]; RealDigits[s[m], 10, digits] // First (* Jean-François Alcover, Jun 25 2013 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Paul D. Hanna, Sep 12 2011
STATUS
approved