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

%I #20 Apr 27 2024 05:20:23

%S 1,1,3,12,55,276,1477,8296,48393,291010,1794320,11297760,72413640,

%T 471309944,3108745785,20746732688,139899430981,952127880138,

%U 6533934575018,45175430719240,314467004704818,2202576030828096,15514620388706488,109851319423632192,781531332298053400

%N a(n) = hypergeometric([-n - 1, 1 - n, -n], [1, 3], -1).

%H T. Amdeberhan, <a href="https://mathoverflow.net/q/412385">A rather curious identity on sums over triple binomial terms</a>, MathOverflow 2021.

%F a(n) * A000217(n) = Sum_{k=0..n-1} binomial(n + 1, k) * binomial(n, k) * binomial(n + 1, k + 2).

%F a(n) * A002378(n) = Sum_{k=0..n-1} binomial(n + 1, k) * binomial(n + 1, k + 1) * binomial(n + 1, k + 2).

%F For a recurrence see the Maple program.

%F a(n) ~ 2^(3*n+4) / (Pi*sqrt(3)*n^3). - _Vaclav Kotesovec_, Apr 27 2024

%p 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:

%p seq(a(n), n = 0..24);

%t a[n_] := HypergeometricPFQ[{-n - 1, 1 - n, -n}, {1, 3}, -1];

%t Table[a[n], {n, 0, 24}]

%o (Python)

%o from sympy import hyperexpand

%o from sympy.functions import hyper

%o def A350265(n): return hyperexpand(hyper((-n-1,1-n,-n),(1,3),-1)) # _Chai Wah Wu_, Dec 29 2021

%Y Cf. A000217, A002378, A277188, A001181 (Baxter permutations).

%K nonn

%O 0,3

%A _Peter Luschny_, Dec 28 2021

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 16:14 EDT 2024. Contains 375396 sequences. (Running on oeis4.)