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.

A262858 Denominators of the Nielsen-Jacobsthal series leading to Euler's constant.

This page as a plain text file.
%I A262858 #18 Sep 08 2022 08:46:14
%S A262858 12,420,240240,36100888223400,236453376820564453502272320,
%T A262858 2225626015166235263233958200740039423756478781341512000
%N A262858 Denominators of the Nielsen-Jacobsthal series leading to Euler's constant.
%C A262858 gamma = 1 - 1/12 - 43/420 - 20431/240240 - 2150797323119/36100888223400 - ..., see formula (36) in the reference below.
%H A262858 G. C. Greubel, <a href="/A262858/b262858.txt">Table of n, a(n) for n = 1..10</a>
%H A262858 Iaroslav V. Blagouchine, <a href="http://dx.doi.org/10.1016/j.jnt.2015.06.012">Expansions of generalized Euler's constants into the series of polynomials in 1/pi^2 and into the formal enveloping series with rational coefficients only.</a> Journal of Number Theory (Elsevier), vol. 158, pp. 365-396, 2016. <a href="http://arxiv.org/abs/1501.00740">arXiv version</a>, arXiv:1501.00740 [math.NT], 2015.
%F A262858 a(n) = n * Sum_{k = 2^n + 1 .. 2^(n + 1)} (-1)^(k + 1)/k.
%e A262858 Denominators of 1/12, 43/420, 20431/240240, 2150797323119/36100888223400, ...
%t A262858 a[n_] := Denominator[n*Sum[(-1)^(k + 1)/k, {k, 2^n + 1, 2^(n + 1)}]]; Table[a[n], {n, 1, 8}]
%o A262858 (PARI) a(n) = denominator(n*sum(k=2^n + 1,2^(n + 1),(-1)^(k + 1)/k));
%o A262858 (Magma) [Denominator(n*(&+[(-1)^(k+1)/k: k in [2^n+1..2^(n+1)]])): n in [1..6]];  // _G. C. Greubel_, Oct 28 2018
%o A262858 (GAP) List(List([1..6],n->n*Sum([2^n+1..2^(n+1)],k->(-1)^(k+1)/k)),DenominatorRat); # _Muniru A Asiru_, Oct 29 2018
%Y A262858 Cf. A075266, A075267, A001620, A195189, A002657, A002790, A262235, A075266, A006953, A001067, A262856 (numerators of this series).
%K A262858 frac,nonn
%O A262858 1,1
%A A262858 _Iaroslav V. Blagouchine_, Oct 03 2015