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!)
A352984 a(n) = Sum_{k=0..floor(n/3)} k^(3*n). 3
1, 0, 0, 1, 1, 1, 262145, 2097153, 16777217, 7625731702716, 205892205836474, 5559069156490116, 4722516577573661689554, 302235507459360068466700, 19342922532827596354169130, 28422947373397605556855075614825, 3552792907042781637051562368414979 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
G.f.: Sum_{k>=0} (k^3 * x)^(3 * k) / (1 - k^3 * x).
MATHEMATICA
a[0] = 1; a[n_] := Sum[k^(3*n), {k, 0, Floor[n/3]}]; Array[a, 16, 0] (* Amiram Eldar, Apr 13 2022 *)
PROG
(PARI) a(n) = sum(k=0, n\3, k^(3*n));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k^3*x)^(3*k)/(1-k^3*x)))
CROSSREFS
Cf. A352983.
Sequence in context: A017577 A051441 A351315 * A017699 A013966 A036096
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Apr 13 2022
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 14:47 EDT 2024. Contains 372519 sequences. (Running on oeis4.)