login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A132325
Decimal expansion of Product_{k>=0} (1+1/10^k).
5
2, 2, 2, 4, 4, 6, 9, 1, 3, 8, 2, 7, 4, 1, 0, 1, 2, 6, 4, 2, 5, 2, 1, 5, 6, 1, 3, 4, 1, 8, 8, 8, 1, 1, 6, 0, 7, 4, 9, 5, 0, 1, 4, 9, 3, 5, 1, 5, 5, 1, 8, 5, 6, 7, 1, 5, 7, 5, 9, 1, 6, 4, 7, 4, 0, 6, 6, 5, 0, 6, 9, 3, 8, 9, 7, 6, 2, 8, 2, 2, 0, 8, 7, 5, 2, 9, 4, 4, 4, 4, 5, 2, 8, 4, 2, 7, 0, 4, 7, 1, 1, 2, 9, 4, 8
OFFSET
1,1
COMMENTS
Twice the constant A132326.
LINKS
Richard J. McIntosh, Some Asymptotic Formulae for q-Hypergeometric Series, Journal of the London Mathematical Society, Vol. 51, No. 1 (1995), pp. 120-136; alternative link.
FORMULA
Equals lim sup_{n->oo} Product_{0<=k<=floor(log_10(n))} (1+1/floor(n/10^k)).
Equals lim sup_{n->oo} A132271(n)/n^((1+log_10(n))/2).
Equals lim sup_{n->oo} A132272(n)/n^((log_10(n)-1)/2).
Equals 2*exp(Sum_{n>0} 10^(-n)*Sum_{k|n} -(-1)^k/k) = 2*exp(Sum_{n>0} A000593(n)/(n*10^n)).
Equals lim sup_{n->oo} A132271(n+1)/A132271(n).
Equals 2*(-1/10; 1/10)_{infinity}, where (a;q)_{infinity} is the q-Pochhammer symbol. - G. C. Greubel, Dec 02 2015
Equals sqrt(2) * exp(log(10)/24 + Pi^2/(12*log(10))) * Product_{k>=1} (1 - exp(-2*(2*k-1)*Pi^2/log(10))) (McIntosh, 1995). - Amiram Eldar, May 20 2023
EXAMPLE
2.22446913827410126425215613418881160749501...
MATHEMATICA
digits = 105; NProduct[1+1/10^k, {k, 1, Infinity}, NProductFactors -> 100, WorkingPrecision -> digits+3] // N[#, digits+3]& // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Feb 18 2014 *)
2*N[QPochhammer[-1/10, 1/10]] (* G. C. Greubel, Dec 02 2015 *)
PROG
(PARI) prodinf(x=0, 1+(1/10)^x) \\ Altug Alkan, Dec 03 2015
KEYWORD
nonn,cons
AUTHOR
Hieronymus Fischer, Aug 20 2007
STATUS
approved