A103930 Numerators of squares of harmonic numbers A001008/A002805.
1, 9, 121, 625, 18769, 2401, 131769, 579121, 50822641, 54479161, 7007531521, 7399612441, 1313299956049, 1372958223289, 1429834803049, 5936819760481, 1775966959381729, 203755669038601, 75787776947048401, 3117562300468225
Offset: 1
Links
- W. Lang: Rationals H(n)^2.
Programs
-
Maple
A103930 := n->numer(sum(1/i, i=1..n)^2); seq(A103930(k), k=1..40); # Wesley Ivan Hurt, Sep 30 2013
-
Mathematica
a[n_] := HarmonicNumber[n]^2 // Numerator; Table[a[n], {n, 1, 20}] (* Jean-François Alcover, Sep 16 2013 *)
Comments