This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A151754 #20 Mar 12 2024 14:50:27 %S A151754 1,3,7,14,28,57,115,230,460,921,1843,3686,7372,14745,29491,58982, %T A151754 117964,235929,471859,943718,1887436,3774873,7549747,15099494, %U A151754 30198988,60397977,120795955,241591910,483183820,966367641,1932735283,3865470566,7730941132,15461882265 %N A151754 Number of n-digit numbers that are divisible by 5^n. %H A151754 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,3,-2). %F A151754 Limit_{n -> oo} a(n+1)/a(n) = 2. %F A151754 a(n) = [(9/10)*2^n]. - _David W. Wilson_, Jun 18 2009 %F A151754 G.f.: x * ( 1+x^2-x^3 ) / ( (x-1)*(2*x-1)*(x^2+1) ). - _R. J. Mathar_, Feb 20 2011 %e A151754 a(1)=1 because 5 divides only 5, %e A151754 a(2)=3 because 25 divides {25, 50 & 75}, %e A151754 a(3)=7 because 125 divides {125, 250, 375, 500, 625, 750 & 925}, etc. %t A151754 f[n_] := Floor[(10^n - 1)/5^n] - Floor[10^(n - 1)/5^n]; Array[f, 35] %t A151754 LinearRecurrence[{3,-3,3,-2},{1,3,7,14},30] (* _Harvey P. Dale_, Feb 20 2016 *) %Y A151754 Cf. A151752. %K A151754 nonn,base,easy %O A151754 1,2 %A A151754 _Robert G. Wilson v_, Jun 17 2009