login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135608 Decimal expansion of Sum_{n>=2} 1/n^(n+1). 3

%I #14 Oct 23 2016 02:47:06

%S 1,3,8,3,8,9,9,9,4,9,7,1,6,6,1,8,6,0,9,7,4,9,5,8,4,5,9,0,0,9,2,4,1,9,

%T 0,2,9,7,7,9,2,8,4,0,1,5,3,6,6,0,0,0,8,2,5,8,2,2,8,2,1,4,5,2,8,5,3,3,

%U 8,2,1,1,7,1,4,8,4,0,9,6,5,6,2,3,6,0,7,7,6,0,4,2,8,3,1,8,7,2,7,7

%N Decimal expansion of Sum_{n>=2} 1/n^(n+1).

%H G. C. Greubel, <a href="/A135608/b135608.txt">Table of n, a(n) for n = 0..1000</a>

%p P:=proc(n) local a,i; a:=0; for i from 1 by 1 to n do a:=a+i^(-i-1); print(evalf(a-1,101)); od; end: P(100);

%t digits = 100; NSum[1/(n^(n+1)), {n, 2, Infinity}, NSumTerms -> 100, WorkingPrecision -> digits+5] // RealDigits[#, 10, digits]& // First (* _Jean-François Alcover_, Feb 18 2014 *)

%o (PARI) suminf(n=2, 1/n^(n+1)) \\ _Michel Marcus_, Oct 23 2016

%Y Cf. A073009.

%K easy,nonn,cons

%O 0,2

%A _Paolo P. Lava_ and _Giorgio Balzarotti_, Feb 27 2008

%E Lower summation index in definition corrected by _R. J. Mathar_, Jan 26 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)