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 A132038 #36 Aug 06 2024 05:02:58 %S A132038 8,9,0,0,1,0,0,9,9,9,9,8,9,9,9,0,0,0,0,0,0,1,0,0,0,0,9,9,9,9,9,9,9,9, %T A132038 8,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9, %U A132038 9,8,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,9,9 %N A132038 Decimal expansion of Product_{k>0} (1-1/10^k). %H A132038 G. C. Greubel, <a href="/A132038/b132038.txt">Table of n, a(n) for n = 0..1500</a> %H A132038 Philippe Flajolet and Robert Sedgewick, <a href="http://algo.inria.fr/flajolet/Publications/AnaCombi/anacombi.html">Analytic Combinatorics</a>, Cambridge University Press, 2009, page 49. %H A132038 Richard J. McIntosh, <a href="https://doi.org/10.1112/jlms/51.1.120">Some Asymptotic Formulae for q-Hypergeometric Series</a>, Journal of the London Mathematical Society, Vol. 51, No. 1 (1995), pp. 120-136; <a href="https://citeseerx.ist.psu.edu/pdf/4f03a5e304ec19f8a725774525aecd2a78f4ad81">alternative link</a>. %F A132038 Equals exp( -Sum_{n>0} sigma_1(n)/(n*10^n) ). %F A132038 Equals (1/10; 1/10)_{infinity}, where (a; q)_{infinity} is the q-Pochhammer symbol. - _G. C. Greubel_, Nov 30 2015 %F A132038 From _Amiram Eldar_, May 09 2023: (Start) %F A132038 Equals sqrt(2*Pi/log(10)) * exp(log(10)/24 - Pi^2/(6*log(10))) * Product_{k>=1} (1 - exp(-4*k*Pi^2/log(10))) (McIntosh, 1995). %F A132038 Equals Sum_{n>=0} (-1)^n/A027878(n). (End) %e A132038 0.8900100999989990000001000... %t A132038 digits = 105; Clear[p]; p[n_] := p[n] = RealDigits[Product[1-1/10^k , {k, 1, n}], 10, digits] // First; p[10]; p[n=20]; While[p[n] != p[n/2], n = 2*n]; p[n] (* _Jean-François Alcover_, Feb 17 2014 *) %t A132038 RealDigits[QPochhammer[1/10], 10, 105][[1]] (* _Jean-François Alcover_, Nov 18 2015 *) %t A132038 N[QPochhammer[1/10,1/10]] (* _G. C. Greubel_, Nov 30 2015 *) %o A132038 (PARI) prodinf(x=1,-.1^x,1) \\ _Charles R Greathouse IV_, Nov 16 2013 %Y A132038 Cf. A000203, A027878, A048651, A067080, A098844, A100220, A132019, A132026. %K A132038 nonn,cons %O A132038 0,1 %A A132038 _Hieronymus Fischer_, Aug 14 2007