login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A060944 n!^2 * sum{k=1 to n} sum{j=1 to k}[1/j^2]. 1
1, 9, 130, 2900, 93576, 4141872, 241353792, 17929776384, 1655071418880, 185914776960000, 24978180045312000, 3955930130221056000, 729464836964806656000, 154952762244805582848000 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Sum of generalized harmonic numbers squared multiplied by (n!)^2. a(n) = Sum[HarmonicNumber[k, 2]], k = 1..n, where HarmonicNumber[k, 2] = Sum[1/k^2], k = 1..n. - Alexander Adamchuk (alex(AT)kolmogorov.com), Oct 27 2004

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,100

Eric Weisstein's World of Mathematics, Link to a section of The World of Mathematics.

FORMULA

a(n) = (n!)^2 * Sum[(k+1)/(n-k)^2, {k, 0, n-1}], a(n) = (n!)^2 * Sum[HarmonicNumber[k, 2]], {k, 1, n}], HarmonicNumber[k, 2] = A007406(k) / A007407(k). - Alexander Adamchuk (alex(AT)kolmogorov.com), Oct 27 2004

EXAMPLE

a(3) = 6^2 *(1 + (1 + 1/2^2) + (1 + 1/2^2 + 1/3^2)) = 130

MATHEMATICA

Table[(n!)^2*Sum[(k+1)/(n-k)^2, {k, 0, n-1}], {n, 1, 10}]

PROG

(PARI) { default(realprecision, 100); for (n=1, 100, write("b060944.txt", n, " ", n!^2 * sum(k=1, n, sum(j=1, k, 1/j^2))); ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 15 2009]

CROSSREFS

Cf. A001705, A007406, A007407.

Sequence in context: A064746 A184143 A075762 * A200407 A194895 A112123

Adjacent sequences:  A060941 A060942 A060943 * A060945 A060946 A060947

KEYWORD

easy,nonn

AUTHOR

Leroy Quet May 07 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 21:56 EST 2012. Contains 205860 sequences.