login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A081530 a(n) = running sum of the first n harmonic numbers, multiplied by the LCM of 1..n. 3
1, 5, 26, 77, 522, 669, 5772, 13827, 48610, 55991, 699612, 785633, 11359222, 12530955, 13726712, 29889983, 550271934, 593094837, 12094689300, 12932216325, 13780828710, 14640022575, 356714770680, 376932115005, 1986818142426 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Consider triangle in A081525. Write terms in k-th row with denominator = LCM of terms in that row. Sequence gives sum of numerators of terms in n-th row.
LINKS
FORMULA
a(n) = lcm(1..n)*(n+1)*(H(n+1)-1), where H(n) is the n-th harmonic number. - C. Ronaldo (aga_new_ac(AT)hotmail.com), Dec 19 2004
Equal to A001705(n) / A025527(n). - Martin Fuller, Jan 03 2006
EXAMPLE
(1), 2*(1 + 3/2), 6*(1 + 3/2 + 11/6), 12*(1 + 3/2 + 11/6 + 25/12).
MAPLE
H:=n->add(1/i, i=1..n):seq((n+1)*ilcm(seq(j, j=1..n))*(H(n+1)-1), n=1..30); # C. Ronaldo
MATHEMATICA
Table[Sum[HarmonicNumber[k], {k, n}] LCM @@ Range[n], {n, 36}] (* Wouter Meeussen *)
CROSSREFS
Sequence in context: A048395 A309451 A081886 * A254831 A360350 A145013
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Mar 27 2003
EXTENSIONS
More terms from Wouter Meeussen, Apr 13 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 12:05 EDT 2024. Contains 371711 sequences. (Running on oeis4.)