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!)
A369496 a(n) = [x^(n*(n+1)/2)] Product_{k=1..n} (x^(k*(k+1)/2) + 1 + 1/x^(k*(k+1)/2)). 1
1, 1, 1, 1, 2, 4, 8, 20, 47, 104, 246, 607, 1496, 3751, 9579, 24720, 64327, 168932, 446830, 1188030, 3177198, 8541152, 23063100, 62550085, 170337684, 465564180, 1276779917, 3512617527, 9692054125, 26815357935, 74381739478, 206820705565, 576371104028 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
MAPLE
b:= proc(n, i) option remember; (m-> `if`(n>m, 0,
`if`(n=m, 1, b(abs(n-i*(i+1)/2), i-1)+b(n, i-1)+
b(n+i*(i+1)/2, i-1))))((2+(3+i)*i)*i/6)
end:
a:= n-> b(n*(n+1)/2, n):
seq(a(n), n=0..32); # Alois P. Heinz, Jan 24 2024
MATHEMATICA
Table[Coefficient[Product[x^(k (k + 1)/2) + 1 + 1/x^(k (k + 1)/2), {k, 1, n}], x, n (n + 1)/2], {n, 0, 32}]
CROSSREFS
Sequence in context: A288476 A338197 A056952 * A225585 A121703 A301467
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 24 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 June 9 20:03 EDT 2024. Contains 373248 sequences. (Running on oeis4.)