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!)
A033468 Partial sums of sequence {1/(i^2+1): i=0..n} (denominators). 3
1, 2, 10, 5, 85, 2210, 81770, 204425, 204425, 16762850, 1693047850, 51637959425, 1497500823325, 2995001646650, 590015324390050, 33335865828037825, 8567317517805721025, 17134635035611442050 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
S:= 0:
for i from 0 to 50 do
S:= S + 1/(i^2+1);
A[i]:= denom(S)
od:
seq(A[i], i=0..50); # Robert Israel, Apr 27 2020
MATHEMATICA
Accumulate[Table[1/(n^2+1), {n, 0, 20}]]//Denominator (* Harvey P. Dale, Jan 20 2020 *)
PROG
(PARI) for(n=0, 20, print1(denominator(sum(k=0, n, 1/(k^2+1))), ", ")) \\ Hugo Pfoertner, Apr 27 2020
CROSSREFS
Cf. A033467.
Sequence in context: A070730 A082192 A276850 * A047816 A095845 A105801
KEYWORD
nonn
AUTHOR
STATUS
approved

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 March 29 09:59 EDT 2024. Contains 371268 sequences. (Running on oeis4.)