A114469 Number of decimal digits in Lucas(10^n).
1, 3, 21, 209, 2090, 20899, 208988, 2089877, 20898765, 208987641, 2089876403, 20898764025, 208987640250, 2089876402500, 20898764024998, 208987640249979, 2089876402499788, 20898764024997874, 208987640249978734, 2089876402499787338, 20898764024997873377, 208987640249978733770, 2089876402499787337693, 20898764024997873376928, 208987640249978733769273, 2089876402499787337692721
Offset: 0
Links
- Hans J. H. Tuenter, Table of n, a(n) for n = 0..100
- Eric Weisstein's World of Mathematics, Lucas Number.
Programs
-
Mathematica
Table[IntegerLength[LucasL[10^n]], {n, 0, 7}] (* Jean-François Alcover, Jan 24 2018 *)
Formula
Limit_{n->oo} a(n)/10^n = A097348. - Amiram Eldar, Apr 14 2022
a(n) = 1+floor(10^n*log_10(phi)), where phi = (1+sqrt(5))/2, the golden ratio. - Hans J. H. Tuenter, Jul 13 2025.
From Hans J. H. Tuenter, Jul 25 2025: (Start)
a(n) = 1 + Sum_{i=0..n} d(i)*10^(n-i),
a(n) = 10*a(n-1)-9+d(n),
where d(i) = A097348(i-1) is the coefficient of 10^(-i) in the decimal expansion of log_10(phi). (End)
Extensions
a(8)-a(10) from Amiram Eldar, Apr 14 2022
a(11)-a(25) from Hans J. H. Tuenter, Jul 15 2025
Comments