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.

A334668 Numerator of Sum_{k=1..n} (-1)^(k+1)/k^7.

Original entry on oeis.org

1, 127, 277877, 35566069, 2778634972433, 2778624972433, 2288319945032390119, 292904812254103669607, 640582959329009845430509, 640582894792751053318381, 12483149055863937257566687990151, 12483148704882733411491577990151, 783299081298153288298872171970695856067
Offset: 1

Views

Author

Petros Hadjicostas, May 07 2020

Keywords

Comments

Lim_{n -> infinity} a(n)/A334669(n) = A275710 = (63/64)*A013665.

Examples

			The first few fractions are 1, 127/128, 277877/279936, 35566069/35831808, 2778634972433/2799360000000, 2778624972433/2799360000000, ... = A334668/A334669.
		

Crossrefs

Cf. A013665, A275710, A334669 (denominators).

Programs

  • Mathematica
    Numerator @ Accumulate[Table[(-1)^(k + 1)/k^7, {k, 1, 13}]] (* Amiram Eldar, May 08 2020 *)
  • PARI
    a(n) = numerator(sum(k=1, n, (-1)^(k+1)/k^7)); \\ Michel Marcus, May 08 2020