Eric Weisstein's World of Mathematics, <a href="httphttps://mathworld.wolfram.com/HarmonicNumber.html">Harmonic Number</a>
Eric Weisstein's World of Mathematics, <a href="httphttps://mathworld.wolfram.com/HarmonicNumber.html">Harmonic Number</a>
(MAGMAMagma) [Numerator(HarmonicNumber(n)/(n+1)): n in [1..35]]; // G. C. Greubel, Jul 03 2019
M. F. Hasler, <a href="/A002547/b002547_1.txt">Table of n, a(n) for n = 1..2000</a> (first 700 terms from Alois P. Heinz)
reviewed
approved
proposed
reviewed
editing
proposed
with(combinat):seq(numer(stirling1(j+1, 2)/(j+1)!*2!*(-1)^(j+1)), j=1..50); # Barbara Margolius (b.margolius(AT)math.csuohio.edu), Jan 19 2002
H := proc(a, b) option remember; local m, p, q, r, s;
if b - a <= 1 then return 1, a fi; m := iquo(a + b, 2);
p, q := H(a, m); r, s := H(m, b); p*s + q*r, q*s; end:
A002547 := proc(n) H(1, n+1); numer(%[1]/(%[2]*(n+1))) end:
seq(A002547(n), n=1..30); # Peter Luschny, Jul 11 2019
proposed
editing
editing
proposed
a(4) = denominatornumerator(H(4)/(4+1)) = 5.
proposed
editing