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.

A262385 Denominators of a semi-convergent series leading to the second Stieltjes constant gamma_2.

Original entry on oeis.org

1, 60, 336, 21600, 133056, 825552000, 89100, 11435424000, 483113030400, 101889627840000, 1471926193920, 42280119968486400, 3425059028160, 209827678712652000, 1184296360402995840, 163066081742403840000, 1749151741873536000, 20373357051590182072392960000
Offset: 1

Views

Author

Keywords

Comments

gamma_2 = - 1/60 + 5/336 - 469/21600 + 6515/133056 - 131672123/825552000 + ..., see formulas (46)-(47) in the reference below.

Examples

			Denominators of 0/1, -1/60, 5/336, -469/21600, 6515/133056, -131672123/825552000, ...
		

Crossrefs

Programs

  • Maple
    a := n -> denom(-Zeta(1 - 2*n)*(Psi(1, 2*n) + (Psi(0,2*n) + gamma)^2 - (Pi^2)/6)):
    seq(a(n), n=1..18); # Peter Luschny, Apr 19 2018
  • Mathematica
    a[n_] := Denominator[BernoulliB[2*n]*(HarmonicNumber[2*n - 1]^2 - HarmonicNumber[2*n - 1, 2])/(2*n)]; Table[a[n], {n, 1, 20}]
  • PARI
    a(n) = denominator(bernfrac(2*n)*(sum(k=1,2*n-1,1/k)^2 - sum(k=1,2*n-1,1/k^2))/(2*n)); \\ Michel Marcus, Sep 23 2015

Formula

a(n) = denominator(B_{2n}*(H^2_{2n-1}-H^(2)_{2n-1})/(2n)), where B_n, H_n and H^(k)_n are Bernoulli, harmonic and generalized harmonic numbers respectively.
a(n) = denominator(-Zeta(1 - 2*n)*(Psi(1,2*n) + (Psi(0,2*n) + gamma)^2 - (Pi^2)/6)), where gamma is Euler's gamma and Psi is the digamma function. - Peter Luschny, Apr 19 2018