cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A140354 a(n) = binomial(n+9,9)*2^n.

This page as a plain text file.
%I A140354 #54 Sep 08 2022 08:45:34
%S A140354 1,20,220,1760,11440,64064,320320,1464320,6223360,24893440,94595072,
%T A140354 343982080,1203937280,4074864640,13388840960,42844291072,133888409600,
%U A140354 409541017600,1228623052800,3621204787200,10501493882880,30004268236800
%N A140354 a(n) = binomial(n+9,9)*2^n.
%C A140354 Number of 9D hypercubes in an (n+9)-dimensional hypercube. - _Zerinvary Lajos_, Jan 29 2010; corrected by _Michel Marcus_, Jan 10 2015
%H A140354 Vincenzo Librandi, <a href="/A140354/b140354.txt">Table of n, a(n) for n = 0..400</a>
%H A140354 Milan Janjic and Boris Petkovic, <a href="http://arxiv.org/abs/1301.4550">A Counting Function</a>, arXiv:1301.4550 [math.CO], 2013.
%H A140354 <a href="/index/Rec#order_10">Index entries for linear recurrences with constant coefficients</a>, signature (20,-180,960,-3360,8064,-13440,15360,-11520,5120,-1024).
%F A140354 a(n) = A038207(n+9,9).
%F A140354 G.f.: 1/(1-2*x)^10. - _Harvey P. Dale_, Jul 18 2011
%F A140354 a(0)=1, a(1)=20, a(2)=220, a(3)=1760, a(4)=11440, a(5)=64064, a(6)=320320, a(7)=1464320, a(8)=6223360, a(9)=24893440; for n>9, a(n) = 20*a(n-1) - 180*a(n-2) + 960*a(n-3) - 3360*a(n-4) + 8064*a(n-5) - 13440*a(n-6) + 15360*a(n-7) - 11520*a(n-8) + 5120*a(n-9) - 1024*a(n-10). - _Harvey P. Dale_, Jul 18 2011
%F A140354 a(n) = 2*a(n-1) + A140325(n-1). - _Ruskin Harding_, May 13 2013
%F A140354 a(n) = Sum_{i=9..n+9} binomial(i,9)*binomial(n+9,i). - _Bruno Berselli_, Mar 23 2018
%F A140354 From _Amiram Eldar_, Jan 07 2022: (Start)
%F A140354 Sum_{n>=0} 1/a(n) = 18*log(2) - 1599/140.
%F A140354 Sum_{n>=0} (-1)^n/a(n) = 118098*log(3/2) - 6703713/140. (End)
%e A140354 For n=6, a(6) = 1*5005 + 10*3003 + 55*1365 + 220*455 + 715*105 + 2002*15 + 5005*1 = 320320.
%p A140354 seq(binomial(n+9,9)*2^n,n=0..23);
%t A140354 Table[Binomial[n + 9, 9] 2^n, {n, 0, 20}] (* _Zerinvary Lajos_, Jan 29 2010 *)
%t A140354 CoefficientList[Series[1/(1-2x)^10,{x,0,30}],x] (* _Harvey P. Dale_, Jul 18 2011 *)
%o A140354 (Sage) [lucas_number2(n, 2, 0)*binomial(n,9)/512 for n in range(9, 31)] # _Zerinvary Lajos_, Mar 10 2009
%o A140354 (PARI) a(n)=binomial(n+9,9)<<n \\ _Charles R Greathouse IV_, Jul 18 2011
%o A140354 (Magma) [2^n*Binomial(n+9, 9): n in [0..30]]; // _Vincenzo Librandi_, Oct 14 2011
%Y A140354 Cf. A038207, A140325.
%K A140354 nonn,easy
%O A140354 0,2
%A A140354 _Zerinvary Lajos_, Jun 23 2008