The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A144653 Denominator of Sum_{k=1..n} k^2*H_{n+k} where H_m = Sum_{i=1..m}. 4
1, 2, 6, 15, 21, 126, 990, 1287, 15015, 102102, 75582, 1322685, 5148297, 12257850, 286833690, 29113619535, 24131609775, 5056146810, 158337229050, 135195634035, 4770474515235, 177808595567850, 155131557292530, 12798353476633725, 79057257761377467, 35057064527669646 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
M. Kauers and C. Schneider, Indefinite summation with unspecified summands, Discr. Math., 306 (2006), 2073-2083. See Eq. 4.
EXAMPLE
0, 3/2, 61/6, 499/15, 1657/21, 19627/126, 270271/990, 566414/1287, ...
MAPLE
a:=n->add(k^2*add(1/i, i=1..n+k), k=1..n): seq(denom(a(n)), n=0..30); # Muniru A Asiru, Dec 03 2018
MATHEMATICA
a[n_] := Denominator[Sum[k^2 * HarmonicNumber[n+k], {k, 1, n}]]; Array[a, 30, 0] (* Amiram Eldar, Dec 03 2018 *)
PROG
(PARI) a(n) = denominator(sum(k=1, n, k^2*sum(i=1, n+k, 1/i))); \\ Michel Marcus, Dec 03 2018
(GAP) List(List([0..30], n->Sum([1..n], k->k^2*Sum([1..n+k], i->1/i))), DenominatorRat); # Muniru A Asiru, Dec 03 2018
CROSSREFS
Sequence in context: A129631 A014847 A013636 * A276782 A227210 A177442
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Jan 28 2009
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 May 13 09:38 EDT 2024. Contains 372504 sequences. (Running on oeis4.)