OFFSET
0,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..10000
FORMULA
Equals Sum_{n>=1} 1/A024023(n).
Equals Sum_{k>=1} d(k)/3^k, where d(k) is the number of divisors of k (A000005). - Amiram Eldar, May 17 2020
EXAMPLE
Equals 0.6821535026052380667...
MAPLE
evalf(sum(1/(3^k-1), k=1..infinity), 120); # Vaclav Kotesovec, Oct 18 2014
# second program with faster converging series
evalf( add( (1/3)^(n^2)*(1 + 2/(3^n - 1)), n = 1..14 ), 105); # Peter Bala, Jan 30 2022
MATHEMATICA
RealDigits[ NSum[1/(3^n - 1), {n, 1, Infinity}, WorkingPrecision -> 110, NSumTerms -> 100], 10, 105] // First (* or *) 1 - (Log[2] + QPolyGamma[0, 1, 1/3])/Log[3] // RealDigits[#, 10, 105]& // First (* Jean-François Alcover, Jun 05 2013 *)
x = 1/3; RealDigits[ Sum[ DivisorSigma[0, k] x^k, {k, 1000}], 10, 105][[1]] (* Robert G. Wilson v, Oct 12 2014 after an observation and the formula of Amarnath Murthy, see A073668 *)
PROG
(PARI) suminf(n=1, 1/(3^n-1)) \\ Michel Marcus, Mar 11 2017
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
R. J. Mathar, Jul 14 2012
EXTENSIONS
More terms from Jean-François Alcover, Feb 12 2013
STATUS
approved