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 A051877 #38 Sep 08 2022 08:44:59 %S A051877 1,12,57,182,462,1008,1974,3564,6039,9724,15015,22386,32396,45696, %T A051877 63036,85272,113373,148428,191653,244398,308154,384560,475410,582660, %U A051877 708435,855036,1024947,1220842,1445592,1702272,1994168,2324784,2697849,3117324,3587409 %N A051877 Partial sums of A051740. %C A051877 Convolution of triangular numbers (A000217) and enneagonal numbers (A001106). - _Bruno Berselli_, Jul 21 2015 %D A051877 A. H. Beiler, Recreations in the Theory of Numbers, Dover, N.Y., 1964, pp. 194-196. %D A051877 Herbert John Ryser, Combinatorial Mathematics, "The Carus Mathematical Monographs", No. 14, John Wiley and Sons, 1963, pp. 1-16. %H A051877 G. C. Greubel, <a href="/A051877/b051877.txt">Table of n, a(n) for n = 0..1000</a> %H A051877 <a href="/index/Ps#pyramidal_numbers">Index to sequences related to pyramidal numbers</a> %H A051877 <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (6,-15,20,-15,6,-1). %F A051877 a(n) = C(n+4, 4)*(7*n+5)/5. %F A051877 G.f.: (1+6*x)/(1-x)^6. %F A051877 From _Wesley Ivan Hurt_, May 02 2015: (Start) %F A051877 a(n) = 6*a(n-1) -15*a(n-2) +20*a(n-3) -15*a(n-4) +6*a(n-5) -a(n-6). %F A051877 a(n) = (n+1)*(n+2)*(n+3)*(n+4)*(7*n+5)/120. (End) %F A051877 E.g.f.: (5! +1320*x +2040*x^2 +920*x^3 +145*x^4 +7*x^5)*exp(x)/5! %p A051877 A051877:=n->binomial(n+4,4)*(7*n+5)/5: seq(A051877(n), n=0..40); # _Wesley Ivan Hurt_, May 02 2015 %t A051877 Table[(n+1)(n+2)(n+3)(n+4)(7n+5)/120, {n, 0, 40}] (* _Vincenzo Librandi_, May 03 2015 *) %t A051877 LinearRecurrence[{6,-15,20,-15,6,-1},{1,12,57,182,462,1008},40] (* _Harvey P. Dale_, May 05 2022 *) %o A051877 (Magma) [(n+1)*(n+2)*(n+3)*(n+4)*(7*n+5)/120 : n in [0..40]]; // _Wesley Ivan Hurt_, May 02 2015 %o A051877 (PARI) vector(40, n, (7*n-2)*binomial(n+3,4)/5) \\ _G. C. Greubel_, Aug 29 2019 %o A051877 (Sage) [(7*n+5)*binomial(n+4,4)/5 for n in (0..40)] # _G. C. Greubel_, Aug 29 2019 %o A051877 (GAP) List([0..40], n-> (7*n+5)*Binomial(n+4,4)/5); # _G. C. Greubel_, Aug 29 2019 %Y A051877 Cf. A051740; A000217, A001106. %Y A051877 Cf. A093564 ((7, 1) Pascal, column m=5). %K A051877 nonn,easy %O A051877 0,2 %A A051877 _Barry E. Williams_, Dec 14 1999