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!)
A369495 a(n) = [x^n] Product_{k=1..n} (x^(k*(k+1)/2) + 1 + 1/x^(k*(k+1)/2)). 0
1, 1, 1, 2, 3, 5, 11, 25, 56, 129, 313, 748, 1831, 4584, 11581, 29555, 76398, 199191, 522746, 1382158, 3676072, 9828631, 26412174, 71310248, 193346941, 526302232, 1437895915, 3941671019, 10839118898, 29893768219, 82671240995, 229213877639, 637049969282 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
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$2):
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, 0, 32}]
CROSSREFS
Sequence in context: A076051 A000628 A358554 * A273755 A258804 A006888
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 May 5 12:19 EDT 2024. Contains 372275 sequences. (Running on oeis4.)