This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A215084 #32 Nov 08 2021 09:14:14 %S A215084 0,1,6,46,470,6035,93436,1695036,35277012,828707925,21693441550, %T A215084 626254969978,19766667410282,677231901484775,25031756512858200, %U A215084 992872579254244088,42066929594261568840,1896157095455962952169,90601933352843530354170,4574495282686422755339734,243359175218492577008763726 %N A215084 a(n) = sum of the sums of the k first n-th powers. %C A215084 First term a(0) may be computed as 1 by starting the inner sum at j=0 and taking the convention 0^0 = 1. %H A215084 Vincenzo Librandi, <a href="/A215084/b215084.txt">Table of n, a(n) for n = 0..200</a> %F A215084 a(n) = Sum_{k=1..n} Sum_{j=1..k} j^n. %F A215084 a(n) = Sum_{k=1..n} H_k^{-n} where H_k^{-n} is the k-th harmonic number of order -n. %F A215084 a(n) = Sum_{k=1..n} (B(n+1, k+1) - B(n+1, 1))/(n+1), where B(n, x) are the Bernoulli polynomials. - _Daniel Suteu_, Jun 25 2018 %F A215084 G.f.: Sum_{k>=1} k^k*x^k/(1 - k*x)^2. - _Ilya Gutkovskiy_, Oct 11 2018 %F A215084 a(n) ~ c * n^n, where c = 1/(1 - 2*exp(-1) + exp(-2)) = 2.50265030107711874333... - _Vaclav Kotesovec_, Nov 06 2021 %e A215084 a(3) = (1^3) + (1^3 + 2^3) + (1^3 + 2^3 + 3^3) = (1^3 + 1^3 + 1^3) + (2^3 + 2^3) + (3^3) = 3 * 1^3 + 2 * 2^3 + 1 * 3^3 = 46. - _David A. Corneth_, Jun 27 2018 %t A215084 Table[Sum[Sum[j^n, {j, 1, k}], {k, 0, n}], {n, 0, 20}] %t A215084 a[n_] := (n+1)*HarmonicNumber[-1, -n] - HarmonicNumber[n, -n-1] + (n+1)*HarmonicNumber[n, -n]; Table[a[n], {n, 0, 20}] (* _Jean-François Alcover_, Mar 05 2013 *) %t A215084 Table[Total[Accumulate[Range[n]^n]],{n,0,20}] (* _Harvey P. Dale_, Mar 29 2020 *) %o A215084 (PARI) a(n) = sum(k=1, n, sum(j=1, k, j^n)); \\ _Michel Marcus_, Jun 25 2018 %o A215084 (PARI) a(n) = sum(i=1, n, (n+1-i) * i^n); \\ _David A. Corneth_, Jun 27 2018 %Y A215084 Row sums of A215083. %Y A215084 Cf. A086787, A349116. %K A215084 nonn %O A215084 0,3 %A A215084 _Olivier Gérard_, Aug 02 2012