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!)
A105253 a(n) = binomial(n+6,n)*binomial(n+10,n). 1

%I #27 Sep 01 2022 07:10:23

%S 1,77,1848,24024,210210,1387386,7399392,33372768,131405274,462351890,

%T 1479526048,4365213216,12004336344,31040798712,76018282560,

%U 177375992640,396324483555,851617661895,1766318113560,3547314771000,6917263803450,13128684361650,24304341297600

%N a(n) = binomial(n+6,n)*binomial(n+10,n).

%H T. D. Noe, <a href="/A105253/b105253.txt">Table of n, a(n) for n = 0..1000</a>

%H <a href="/index/Rec#order_17">Index entries for linear recurrences with constant coefficients</a>, signature (17,-136,680,-2380,6188,-12376,19448,-24310,24310,-19448,12376,-6188,2380,-680,136,-17,1).

%F G.f.: -(210*x^6+1512*x^5+3150*x^4+2400*x^3+675*x^2+60*x+1)/(x-1)^17. - _Colin Barker_, Jan 21 2013

%F From _Amiram Eldar_, Sep 01 2022: (Start)

%F Sum_{n>=0} 1/a(n) = 20020*Pi^2 - 1493768807/7560.

%F Sum_{n>=0} (-1)^n/a(n) = 131072*log(2)/21 - 100*Pi^2 - 88332653/26460. (End)

%e a(0): C(0+6,0)*C(0+10,0) = C(6,0)*C(10,0) = 1*1 = 1;

%e a(10): C(10+6,10)*C(10+10,10) = C(16,10)*(20,10) = 8008*184756 = 1479526048.

%t f[n_] := Binomial[n + 6, n]Binomial[n + 10, n]; Table[ f[n], {n, 0, 20}] (* _Robert G. Wilson v_, Apr 20 2005 *)

%o (Magma) [Binomial(n+6,n)*Binomial(n+10,n): n in [0..30]]; // _Vincenzo Librandi_, Jul 31 2015

%o (Python)

%o A105253_list, m = [], [8008, -22022, 23023, -11297, 2563, -209] + [1]*11

%o for _ in range(10**2):

%o A105253_list.append(m[-1])

%o for i in range(16):

%o m[i+1] += m[i] # _Chai Wah Wu_, Jan 24 2016

%K easy,nonn

%O 0,2

%A _Zerinvary Lajos_, Apr 14 2005

%E More terms from _Robert G. Wilson v_, Apr 20 2005

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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)