login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A099865
Numerator of sum of all elements M(i,j,k) = i*j/k, (i,j,k = 1..n). a(n) = Numerator[Sum[Sum[Sum[i*j/k,{i,1,n}],{j,1,n}],{k,1,n}]].
1
1, 27, 66, 625, 2055, 21609, 10164, 123282, 320805, 4465505, 920821, 14537549, 104285363, 41010655, 47830280, 2816662204, 6447760119, 139131611847, 26153100905, 29313445875, 13068630729, 111103313343, 91973556693
OFFSET
1,2
FORMULA
a(n) = Numerator[Sum[Sum[Sum[i*j/k, {i, 1, n}], {j, 1, n}], {k, 1, n}]]
EXAMPLE
Sum[M(i,j,k)] begins 1, 27/32, 66, 625/3, 2055/4, 21609/20, ... So a(4) = 625.
MATHEMATICA
Table[ Numerator[ Sum[ i*j/k, {i, n}, {j, n}, {k, n}]], {n, 23}]
CROSSREFS
Corresponding denominator of Sum[M(i, j, k)] is A099866
Cf. A099866.
Sequence in context: A106200 A303972 A361147 * A065008 A250134 A116353
KEYWORD
nonn,frac
AUTHOR
Alexander Adamchuk, Oct 28 2004
STATUS
approved