OFFSET
1,2
COMMENTS
Numerator and denominator in definition have no common divisors >1.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The 3rd harmonic number is 11/6. So a(3) = 11 * 6 = 66.
MATHEMATICA
Numerator[#]Denominator[#]&/@HarmonicNumber[Range[30]] (* Harvey P. Dale, May 01 2022 *)
PROG
(PARI) a(n) = my(h=sum(k=1, n, 1/k)); numerator(h) * denominator(h); \\ Michel Marcus, Sep 07 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Sep 19 2001
EXTENSIONS
More terms from Michel Marcus, Sep 07 2019
STATUS
approved