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!)
A369343 a(n) is the constant term in expansion of Product_{k=1..n} (x^(2*k-1) + 1 + 1/x^(2*k-1)). 2
1, 1, 1, 1, 3, 9, 21, 49, 117, 295, 761, 1993, 5261, 14025, 37699, 102151, 278587, 764145, 2106433, 5832863, 16217191, 45255167, 126708863, 355848715, 1002145705, 2829479797, 8007670701, 22711890561, 64547494347, 183790615881, 524239904367, 1497786769295 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
All terms are odd.
LINKS
FORMULA
a(n) ~ 3^(n+1) / (4*sqrt(Pi)*n^(3/2)). - Vaclav Kotesovec, Jan 21 2024
MAPLE
b:= proc(n, i) option remember; `if`(n>i^2, 0, `if`(i=0, 1,
b(n, i-1)+b(n+2*i-1, i-1)+b(abs(n-2*i+1), i-1)))
end:
a:= n-> b(0, n):
seq(a(n), n=0..33); # Alois P. Heinz, Jan 21 2024
MATHEMATICA
Table[Coefficient[Product[x^(2 k - 1) + 1 + 1/x^(2 k - 1), {k, 1, n}], x, 0], {n, 0, 30}]
CROSSREFS
Sequence in context: A006813 A274230 A056823 * A105544 A119917 A111209
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 20 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 September 12 07:34 EDT 2024. Contains 375842 sequences. (Running on oeis4.)