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!)
A369735 Number of solutions to 1^3*k_1 + 2^3*k_2 + ... + n^3*k_n = 1, where k_i are from {-1,0,1}, i=1..n. 2
0, 1, 1, 1, 1, 1, 3, 4, 6, 15, 28, 56, 125, 287, 646, 1540, 3625, 8484, 21167, 51458, 126342, 323126, 811538, 2052501, 5339265, 13751212, 35589866, 94032931, 246791641, 650227636, 1739032299, 4630165425, 12373805281, 33429284691, 90073865814, 243460560324 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(n) = [x^1] Product_{k=1..n} (x^(k^3) + 1 + 1/x^(k^3)).
MAPLE
b:= proc(n, i) option remember; `if`(n>(i*(i+1)/2)^2, 0,
`if`(i=0, 1, b(n, i-1)+b(n+i^3, i-1)+b(abs(n-i^3), i-1)))
end:
a:= n-> b(1, n):
seq(a(n), n=0..35); # Alois P. Heinz, Jan 30 2024
MATHEMATICA
Table[Coefficient[Product[(x^(k^3) + 1 + 1/x^(k^3)), {k, 1, n}], x, 1], {n, 0, 33}]
CROSSREFS
Sequence in context: A129827 A325179 A308533 * A322956 A122727 A347056
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 30 2024
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 17 17:07 EDT 2024. Contains 372603 sequences. (Running on oeis4.)