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.
%I A162669 #23 Sep 08 2022 08:45:46 %S A162669 0,144,1008,4032,12096,30240,66528,133056,247104,432432,720720, %T A162669 1153152,1782144,2673216,3907008,5581440,7814016,10744272,14536368, %U A162669 19381824,25502400,33153120,42625440,54250560,68402880,85503600,106024464,130491648,159489792,193666176 %N A162669 a(n) = n*(n+1)*(n+2)*(n+3)*(n+4)*(n+5)/5. %H A162669 Vincenzo Librandi, <a href="/A162669/b162669.txt">Table of n, a(n) for n = 0..1000</a> %F A162669 From _R. J. Mathar_, Jul 13 2009: (Start) %F A162669 a(n) = 144 * A000579(n+5). %F A162669 G.f.: 144*x/(1-x)^7. (End) %F A162669 E.g.f.: x*(720 +1800*x +1200*x^2 +300*x^3 +30*x^4 +x^5)*exp(x)/5. - _G. C. Greubel_, Aug 27 2019 %F A162669 From _Amiram Eldar_, Jan 09 2022: (Start) %F A162669 Sum_{n>=1} 1/a(n) = 1/120. %F A162669 Sum_{n>=1} (-1)^(n+1)/a(n) = 4*log(2)/3 - 661/720. (End) %p A162669 seq(144*binomial(n+5,6), n = 0..30); # _G. C. Greubel_, Aug 27 2019 %t A162669 CoefficientList[Series[144*x/(1-x)^7,{x,0,30}],x] (* _Vincenzo Librandi_, Mar 05 2012 *) %t A162669 Table[(Times@@(n+Range[0,5]))/5,{n,0,30}] (* _Harvey P. Dale_, Jul 01 2019 *) %t A162669 144*Binomial[Range[30] +4, 6] (* _G. C. Greubel_, Aug 27 2019 *) %o A162669 (Magma) [n*(n+1)*(n+2)*(n+3)*(n+4)*(n+5)/5: n in [1..30]]; // _Vincenzo Librandi_, Mar 05 2012 %o A162669 (PARI) vector(30, n, 144*binomial(n+4,6)) \\ _G. C. Greubel_, Aug 27 2019 %o A162669 (Sage) [144*binomial(n+5,6) for n in (0..30)] # _G. C. Greubel_, Aug 27 2019 %o A162669 (GAP) List([0..30], n-> 144*Binomial(n+5, 6)); # _G. C. Greubel_, Aug 27 2019 %Y A162669 Cf. A000579. %K A162669 nonn,easy %O A162669 0,2 %A A162669 _Vincenzo Librandi_, Jul 10 2009 %E A162669 Definition factorized, offset corrected by _R. J. Mathar_, Jul 13 2009