login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A346716
a(n) = numerator(Sum_{k=1..2*n} Bernoulli(1 + k) / ((1 + k) * k^(1 + k))).
2
0, 1, 809, 17696929, 29148363745769, 13802156299837263870439, 51192911535225069982129975520643227, 15505058537999075182938597423297191148526445182931, 25740819838475027138304706528711851561870640774224535090837
OFFSET
0,3
MATHEMATICA
r[n_] := Sum[BernoulliB[1 + k] / ((1 + k) * k^(1 + k)), {k, 1, 2*n}];
Table[r[n], {n, 0, 10}] // Numerator
PROG
(PARI) a(n) = numerator(sum(k=1, 2*n, bernfrac(1+k)/((1+k)*k^(1+k)))); \\ Michel Marcus, Aug 12 2021
CROSSREFS
Cf. A346717 (denominator), A346718 (rational limit).
Sequence in context: A265984 A332848 A160561 * A156404 A282376 A203844
KEYWORD
nonn,frac
AUTHOR
Peter Luschny, Aug 11 2021
STATUS
approved