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!)
A137220 a(n) = (A126086(n) + 3*A001850(n) + 2)/6. 3

%I #20 Jan 06 2022 02:30:53

%S 1,4,75,2712,116681,5366384,256461703,12582521536,629390010177,

%T 31955248465164,1641724961412515,85159811886281576,

%U 4452782349821587705,234393562420377364008,12409423916987553634575,660253088667255226947072

%N a(n) = (A126086(n) + 3*A001850(n) + 2)/6.

%H Andrew Howroyd, <a href="/A137220/b137220.txt">Table of n, a(n) for n = 0..200</a>

%F a(n) = -Sum_{m>=0} binomial(-binomial(m,n),3)/2^(m+1).

%F a(n) = A137219(n) + A001850(n). - _R. J. Mathar_, Apr 01 2008

%F a(n) = Sum_{j=0..3*n} binomial(binomial(j,n)+2, 3) * (Sum_{i=j..3*n} (-1)^(i-j)*binomial(i,j)). - _Andrew Howroyd_, Feb 09 2020

%p A126086 := proc(n) local x,y,z ; coeftayl(coeftayl(coeftayl(1/(1-x-y-z-x*y-x*z-y*z-x*y*z),z=0,n),y=0,n),x=0,n) ; end: A001850 := proc(n) local k ; add(binomial(n,k)*binomial(n+k,k),k=0..n) ; end: A137220 := proc(n) (A126086(n)+3*A001850(n)+2)/6 ; end: seq(A137220(n),n=0..30) ; # _R. J. Mathar_, Apr 01 2008

%t T[n_, k_] := With[{m = n k}, Sum[Binomial[Binomial[j, n] + k - 1, k] Sum[ (-1)^(i - j) Binomial[i, j], {i, j, m}], {j, 0, m}]];

%t Table[T[n, 3], {n, 0, 15}] (* _Jean-François Alcover_, Apr 10 2020, after _Andrew Howroyd_ *)

%o (PARI) a(n) = {sum(j=0, 3*n, binomial(binomial(j,n)+2, 3) * sum(i=j, 3*n, (-1)^(i-j)*binomial(i,j)))} \\ _Andrew Howroyd_, Feb 09 2020

%o (Sage)

%o @CachedFunction

%o def A137220(n): return round( -sum( binomial(-binomial(j, n), 3)/2^(j+1) for j in (0..500) ) )

%o [A137220(n) for n in (0..30)] # _G. C. Greubel_, Jan 05 2022

%Y Column k=3 of A330942.

%Y Cf. A047665, A137219.

%K easy,nonn

%O 0,2

%A _Vladeta Jovovic_, Mar 06 2008, Mar 16 2008

%E More terms from _R. J. Mathar_, Apr 01 2008

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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)