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”).

A349901
a(n) = Sum_{k=0..n} k^(3*n).
3
1, 1, 65, 20196, 17312754, 31605701625, 105443761093411, 580964060390826448, 4918745981990731659972, 60634331963604550954204425, 1043651859661187698792930519525, 24256699178432730349549665042311076, 740737411098120942914045235001015624310
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{k>=0} (k^3 * x)^k/(1 - k^3 * x).
a(n) ~ exp(3)/(exp(3)-1) * n^(3*n). - Vaclav Kotesovec, Dec 05 2021
PROG
(PARI) a(n) = sum(k=0, n, k^(3*n));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k^3*x)^k/(1-k^3*x)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 05 2021
STATUS
approved