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.

A073099 Numerator of b(n) = n * Sum_{k=2^n..2^(n+1)-1} (-1)^k/k.

Original entry on oeis.org

1, 31, 12307, 1180906852403, 4726403852635437852230311, 26387151472737581442533784610190235872453672267436617, 16379090991119093215568426722482532968867795792384100101494022155108529793899838205018451949281878220687877
Offset: 1

Views

Author

Benoit Cloitre, Aug 18 2002

Keywords

Examples

			The fractions begin with 1/6, 31/210, 12307/120120, 1180906852403/18050444111700, ...
		

Crossrefs

Cf. A001620, A073100 (denominators).

Programs

  • Mathematica
    a[n_] := Numerator[n * Sum[(-1)^k/k, {k, 2^n, 2^(n+1)-1}]]; Array[a, 7] (* Amiram Eldar, May 19 2022 *)
  • PARI
    a(n)=numerator( n*sum(k=2^n,2^(n+1)-1,(-1)^k/k))

Formula

Sum_{k>=1} b(k) = gamma = 0.5772... (A001620).