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!)
A368708 a(n) = hypergeom([-1 - n, -n, 1 - n], [2, 3], -2). 3
1, 1, 3, 13, 69, 417, 2763, 19609, 146793, 1146833, 9278595, 77292261, 659973933, 5756169681, 51137399979, 461691066417, 4228199347281, 39216540096993, 367890444302787, 3486697883136957, 33353178454762389, 321754445379041601, 3127955713554766923, 30624486778208481993, 301790556354721667769, 2991957347531210976817 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (1/2)*B(n, 2) where B(n, x) are the Baxter polynomials with coefficients A359363, for n > 0. - Peter Luschny, Jan 04 2024
a(n) ~ 3^(n + 7/6) * (2^(2/3) + 2^(1/3) + 1)^(n + 5/3) / (2^(4/3) * Pi * n^4). - Vaclav Kotesovec, Jan 04 2024
MATHEMATICA
Table[HypergeometricPFQ[{-1-n, -n, 1-n}, {2, 3}, -2], {n, 0, 30}] (* Vaclav Kotesovec, Jan 04 2024 *)
PROG
(SageMath)
def A368708(n): return PolyA359363(n, 2) // 2 if n > 0 else 1
print([A368708(n) for n in range(23)]) # Peter Luschny, Jan 04 2024
(Python)
def A368708(n):
if n == 0: return 1
return sum(2**k * v for k, v in enumerate(A359363Row(n))) // 2
print([A368708(n) for n in range(26)]) # Peter Luschny, Jan 04 2024
CROSSREFS
Sequence in context: A074534 A153395 A243688 * A352855 A088714 A067145
KEYWORD
nonn
AUTHOR
Joerg Arndt, Jan 04 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 16 20:35 EDT 2024. Contains 372555 sequences. (Running on oeis4.)