cp's OEIS Frontend

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.

Showing 1-4 of 4 results.

A131688 Decimal expansion of the constant Sum_{k>=1} log(k + 1) / (k * (k + 1)).

Original entry on oeis.org

1, 2, 5, 7, 7, 4, 6, 8, 8, 6, 9, 4, 4, 3, 6, 9, 6, 3, 0, 0, 0, 9, 8, 9, 9, 8, 3, 0, 4, 9, 5, 8, 8, 1, 5, 2, 8, 5, 1, 1, 5, 4, 0, 8, 9, 0, 5, 0, 8, 8, 8, 4, 8, 6, 8, 9, 7, 7, 5, 4, 0, 8, 3, 3, 5, 2, 2, 5, 4, 9, 9, 9, 4, 8, 9, 3, 7, 4, 4, 9, 3, 4, 9, 7, 0, 7, 9, 0, 4, 7, 3, 1, 5, 0, 1, 9, 0, 9, 7, 8, 2, 4, 5, 4, 8
Offset: 1

Views

Author

R. J. Mathar, Sep 14 2007

Keywords

Comments

Given A131385(n) = Product_{k=1..n} floor((n+k)/k), then limit A131385(n+1)/A131385(n) = exp(c), where c = this constant. - Paul D. Hanna, Nov 26 2012
Closely related to A085361 (the exponent in the definition of A085291). - Yuriy Sibirmovsky, Sep 04 2016

Examples

			1.257746886944369630009899830495881528511540890508884868977540833522...
		

References

  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, page 62. [Jean-François Alcover, Mar 21 2013]

Crossrefs

Programs

  • Magma
    SetDefaultRealField(RealField(100)); L:=RiemannZeta(); (&+[(-1)^(n+1)*Evaluate(L,n+1)/n: n in [1..10^3]]); // G. C. Greubel, Nov 15 2018
    
  • Maple
    evalf(sum((-1)^(n+1)*Zeta(n+1)/n, n=1..infinity), 120); # Vaclav Kotesovec, Dec 11 2015
    evalf(Sum(-Zeta(1, k), k = 2..infinity), 120); # Vaclav Kotesovec, Jun 18 2021
  • Mathematica
    Sum[ -Zeta'[1 + k], {k, 1, Infinity}] (* Vladimir Reshetnikov, Dec 28 2008 *)
    Integrate[EulerGamma/x + PolyGamma[0, 1+x]/x, {x, 0, 1}] // N[#, 105]& // RealDigits[#][[1]]& (* or *) Integrate[x*Log[x]/((1-x)*Log[1-x]), {x, 0, 1}] // N[#, 105]& // RealDigits[#][[1]]& (* Jean-François Alcover, Feb 04 2013 *)
    $MaxExtraPrecision = 200; NIntegrate[HarmonicNumber[t]/t, {t, 0, 1}, WorkingPrecision -> 105] (* Yuriy Sibirmovsky, Sep 04 2016 *)
    digits = 120; RealDigits[NSum[(-1)^(n + 1)*Zeta[n + 1]/n, {n,1,Infinity}, NSumTerms -> 20*digits, WorkingPrecision -> 10*digits, Method -> "AlternatingSigns"], 10, digits][[1]] (* G. C. Greubel, Nov 15 2018 *)
  • PARI
    sumalt(s=1, (-1)^(s+1)/s*zeta(s+1) )
    
  • PARI
    suminf(k=2, -zeta'(k)) \\ Vaclav Kotesovec, Jun 17 2021
    
  • SageMath
    numerical_approx(sum((-1)^(k+1)*zeta(k+1)/k for k in [1..1000]), digits=100) # G. C. Greubel, Nov 15 2018

Formula

Equals Sum_{s>=1} (-1)^(s+1)*zeta(s+1)/s.
Equals Sum_{k>=1} -zeta'(1 + k), where Zeta' is the derivative of the Riemann zeta function. - Vladimir Reshetnikov, Dec 28 2008
Equals Sum_{s>=1} log(1+1/s)/s. - Jean-François Alcover, Mar 26 2013
Equals Integral_{t=0..1} H(t)/t dt. Compare to A001620 = Integral_{t=0..1} H(t) dt. Where H(t) are generalized harmonic numbers. - Yuriy Sibirmovsky, Sep 04 2016
Equals lim_{n->oo} log(d(n!))*log(n)/n, where d(n) is the number of divisors of n (A000005) (Erdős et al., 1996). - Amiram Eldar, Nov 07 2020

Extensions

Extended to 105 digits by Jean-François Alcover, Feb 04 2013

A085361 Decimal expansion of the number c = Sum_{n>=1} (zeta(n+1)-1)/n.

Original entry on oeis.org

7, 8, 8, 5, 3, 0, 5, 6, 5, 9, 1, 1, 5, 0, 8, 9, 6, 1, 0, 6, 0, 2, 7, 6, 3, 2, 3, 4, 5, 4, 5, 5, 4, 6, 6, 6, 4, 7, 2, 7, 4, 9, 6, 6, 8, 2, 2, 3, 2, 8, 1, 6, 4, 9, 7, 5, 5, 1, 5, 6, 4, 0, 2, 3, 0, 1, 7, 8, 0, 6, 4, 3, 5, 6, 3, 3, 0, 1, 6, 2, 2, 8, 7, 4, 7, 1, 5, 9, 2, 1, 3, 3, 2, 2, 4, 3, 1, 9, 6, 7, 5, 6
Offset: 0

Views

Author

Eric W. Weisstein, Jun 25 2003

Keywords

Comments

The Alladi-Grinstead constant (A085291) is exp(c-1).

Examples

			0.78853056591150896106027632345455466647274966822328164975515640230178...
		

References

  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 1.8.1 Alternative representations [of real numbers], p. 62.

Crossrefs

Programs

  • Magma
    SetDefaultRealField(RealField(120)); L:=RiemannZeta(); (&+[(Evaluate(L,n+1)-1)/n: n in [1..1000]]); // G. C. Greubel, Nov 15 2018
  • Maple
    evalf(sum((Zeta(n+1)-1)/n, n=1..infinity), 120); # Vaclav Kotesovec, Dec 11 2015
    evalf(Sum(-(-1)^k*Zeta(1, k), k = 2..infinity), 120); # Vaclav Kotesovec, Jun 18 2021
  • Mathematica
    Sum[(-1+Zeta[1+n])/n,{n,Infinity}]
    NSum[Log[k]/(k*(k+1)), {k, 1, Infinity}, WorkingPrecision -> 120, NSumTerms ->5000, Method -> {NIntegrate, MaxRecursion -> 100}] (* Vaclav Kotesovec, Dec 11 2015 *)
  • PARI
    suminf(n=1,(zeta(n+1)-1-2^(-n-1))/n)+log(2)/2 \\ Charles R Greathouse IV, Feb 20 2012
    
  • PARI
    sumalt(k=2, -(-1)^k * zeta'(k)) \\ Vaclav Kotesovec, Jun 17 2021
    
  • Sage
    import mpmath
    mpmath.mp.pretty=True; mpmath.mp.dps=108 #precision
    mpmath.nsum(lambda n: (-1+mpmath.zeta(1+n))/n, [1,mpmath.inf]) # Peter Luschny, Jul 14 2012
    
  • Sage
    numerical_approx(sum((zeta(k+1)-1)/k for k in [1..1000]), digits=120) # G. C. Greubel, Nov 15 2018
    

Formula

Equals Sum_{n>=2} log(n/(n-1))/n = Sum_{n>=1, k>=2} 1/(n*k^(n+1)). [From Mathworld links]
Equals -Sum_{k>=2} (-1)^k * zeta'(k). - Vaclav Kotesovec, Jun 17 2021
Equals log(A245254) = Sum_{k>=1} log(k)/(k*(k+1)). - Amiram Eldar, Jun 27 2021
Equals -log(A242624). - Amiram Eldar, Feb 06 2022

A245254 Decimal expansion of U = Product_{k>=1} (k^(1/(k*(k+1)))), a Khintchine-like limiting constant related to Lüroth's representation of real numbers.

Original entry on oeis.org

2, 2, 0, 0, 1, 6, 1, 0, 5, 8, 0, 9, 9, 0, 2, 6, 5, 5, 3, 1, 9, 4, 5, 5, 7, 8, 6, 6, 5, 5, 9, 9, 4, 4, 8, 7, 2, 6, 8, 5, 6, 6, 2, 3, 2, 4, 7, 5, 2, 7, 2, 3, 8, 8, 8, 7, 2, 3, 1, 4, 5, 1, 1, 7, 7, 6, 3, 1, 6, 9, 0, 1, 1, 2, 6, 9, 6, 6, 5, 9, 4, 7, 5, 8, 4, 7, 0, 2, 9, 7, 3, 4, 7, 2, 6, 8, 0, 7, 6, 2, 5, 8, 1, 6, 1
Offset: 1

Views

Author

Jean-François Alcover, Jul 15 2014

Keywords

Comments

The geometric mean of the Yule-Simon distribution with parameter value 1 (A383855) approaches this constant. In general, the geometric mean of the Yule-Simon distribution approaches Product_{k>=2} k^(1/(p*Beta(k,p+1))). - Jwalin Bhatt, May 12 2025

Examples

			2.200161058099026553194557866559944872685662324752723888723145117763169...
		

References

  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 1.8.1 Alternative representations [of real numbers], p. 62.

Crossrefs

Programs

  • Maple
    evalf(exp(Sum((Zeta(n+1)-1)/n, n=1..infinity)), 120); # Vaclav Kotesovec, Dec 11 2015
  • Mathematica
    Exp[NSum[Log[k]/(k*(k+1)), {k, 1, Infinity}, WorkingPrecision -> 120, NSumTerms -> 5000, Method -> {NIntegrate, MaxRecursion -> 100}]] (* Vaclav Kotesovec, Dec 11 2015 *)

Formula

Equals exp(A085361).
U*V*W = 1, where V is A244109 and W is A131688.
Equals e * A085291. - Amiram Eldar, Jun 27 2021
Equals 1/A242624. - Amiram Eldar, Feb 06 2022

Extensions

Corrected by Vaclav Kotesovec, Dec 11 2015

A272286 Decimal expansion of Product_{k >= 1} (k*(k+1))^(-1/(k*(k+1))), a constant related to the alternating Lüroth representations of real numbers.

Original entry on oeis.org

1, 2, 9, 2, 1, 5, 0, 1, 8, 4, 0, 6, 0, 9, 9, 8, 4, 1, 3, 4, 1, 5, 7, 1, 9, 0, 0, 0, 7, 4, 2, 1, 9, 7, 7, 7, 1, 5, 7, 3, 3, 6, 4, 6, 2, 0, 3, 8, 6, 7, 8, 7, 4, 4, 8, 7, 7, 3, 0, 0, 0, 6, 2, 5, 3, 9, 4, 0, 0, 9, 6, 1, 8, 2, 9, 7, 1, 0, 4, 2, 7, 5, 4, 0, 3, 9, 6, 8, 0, 5, 6, 7, 7, 5, 3, 6, 5, 4, 5, 1, 7, 7, 3, 3, 6
Offset: 0

Views

Author

Jean-François Alcover, Apr 24 2016

Keywords

Examples

			0.1292150184060998413415719000742197771573364620386787448773...
		

References

  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 1.8.1 Alternative representations [of real numbers], p. 62.

Crossrefs

Programs

  • Mathematica
    digits = 105; Exp[-NSum[((1 + (-1)^(n + 1))*Zeta[n + 1] - 1)/n, {n, 1, Infinity}, Method -> "AlternatingSigns", WorkingPrecision -> 2 digits, NSumTerms -> 200]] // RealDigits[#, 10, digits]& // First

Formula

Exp(-Sum_{n >= 1} (((1 + (-1)^(n+1))*Zeta(n+1) - 1)/n)). - After Vaclav Kotesovec's formula for A244109.

Extensions

Offset corrected by Andrey Zabolotskiy, Dec 12 2023
Showing 1-4 of 4 results.