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!)
A350265 a(n) = hypergeometric([-n - 1, 1 - n, -n], [1, 3], -1). 1
1, 1, 3, 12, 55, 276, 1477, 8296, 48393, 291010, 1794320, 11297760, 72413640, 471309944, 3108745785, 20746732688, 139899430981, 952127880138, 6533934575018, 45175430719240, 314467004704818, 2202576030828096, 15514620388706488, 109851319423632192, 781531332298053400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) * A000217(n) = Sum_{k=0..n-1} binomial(n + 1, k) * binomial(n, k) * binomial(n + 1, k + 2).
a(n) * A002378(n) = Sum_{k=0..n-1} binomial(n + 1, k) * binomial(n + 1, k + 1) * binomial(n + 1, k + 2).
For a recurrence see the Maple program.
a(n) ~ 2^(3*n+4) / (Pi*sqrt(3)*n^3). - Vaclav Kotesovec, Apr 27 2024
MAPLE
a := proc(n) option remember; if n < 2 then 1 else ((n + 1)*((7*n^2 + 7*n - 2)*a(n - 1) + 8*(n - 2)*n*a(n - 2)))/(n*(n + 2)*(n + 3)) fi end:
seq(a(n), n = 0..24);
MATHEMATICA
a[n_] := HypergeometricPFQ[{-n - 1, 1 - n, -n}, {1, 3}, -1];
Table[a[n], {n, 0, 24}]
PROG
(Python)
from sympy import hyperexpand
from sympy.functions import hyper
def A350265(n): return hyperexpand(hyper((-n-1, 1-n, -n), (1, 3), -1)) # Chai Wah Wu, Dec 29 2021
CROSSREFS
Cf. A000217, A002378, A277188, A001181 (Baxter permutations).
Sequence in context: A342283 A120920 A179487 * A263533 A064314 A362085
KEYWORD
nonn
AUTHOR
Peter Luschny, Dec 28 2021
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 August 23 13:40 EDT 2024. Contains 375396 sequences. (Running on oeis4.)