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!)
A349902 a(n) = Sum_{k=0..n} (-1)^(n-k) * k^(3*n). 2
1, 1, 63, 19172, 16249870, 29458152441, 97813591721181, 537081363012854224, 4535464309375188976956, 55796581668379082029481225, 958824462567528346234944706075, 22255431432328421226838750870120356, 678866987929798923743810982299237129610 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{k>=0} (k^3 * x)^k/(1 + k^3 * x).
a(n) ~ 1/(1 + exp(-3)) * n^(3*n). - Vaclav Kotesovec, Dec 10 2021
MATHEMATICA
Join[{1}, Table[Sum[(-1)^(n-k) k^(3n), {k, 0, n}], {n, 20}]] (* Harvey P. Dale, Apr 12 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*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
Sequence in context: A062208 A132594 A212932 * A177233 A183482 A327416
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 05 2021
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 April 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)