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.

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

Original entry on oeis.org

6, 210, 120120, 18050444111700, 118226688410282226751136160, 1112813007583117631616979100370019711878239390670756000, 1191035057635417333689929196555456096447880322064975132139675263681349241137859495385119040334214863238544000
Offset: 1

Views

Author

Benoit Cloitre, Aug 18 2002

Keywords

Crossrefs

Cf. A001620, A073099 (numerators).

Programs

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

Formula

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