OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..10000
FORMULA
Equals Sum_{k>=1} d(k)/8^k, where d(k) is the number of divisors of k (A000005). - Amiram Eldar, Jun 22 2020
EXAMPLE
0.16096618431506239680530256414364288555074385602532834636083591864782394085800...
MAPLE
evalf(sum(1/(8^k-1), k=1..infinity), 120) # Vaclav Kotesovec, Oct 18 2014
# second program with faster converging series
evalf( add( (1/8)^(n^2)*(1 + 2/(8^n - 1)), n = 1..10), 105); # Peter Bala, Jan 30 2022
MATHEMATICA
x = 1/8; RealDigits[ Sum[ DivisorSigma[0, k] x^k, {k, 1000}], 10, 105][[1]] (* after an observation and the formula of Amarnath Murthy, see A073668 *)
PROG
(PARI) suminf(k=1, 1/(8^k-1)) \\ Michel Marcus, Oct 18 2014
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Robert G. Wilson v, Oct 12 2014
STATUS
approved