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 A131924 #26 Mar 05 2022 01:03:55 %S A131924 1,4,10,20,36,62,106,184,328,602,1134,2180,4252,8374,16594,33008, %T A131924 65808,131378,262486,524668,1048996,2097614,4194810,8389160,16777816, %U A131924 33555082,67109566,134218484,268436268,536871782,1073742754,2147484640 %N A131924 Row sums of triangle A131923. %H A131924 Muniru A Asiru, <a href="/A131924/b131924.txt">Table of n, a(n) for n = 0..600</a> %H A131924 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (5,-9,7,-2). %F A131924 Binomial transform of (1, 3, 3, 1, 1, 1, ...). %F A131924 a(n) = 2^n + n^2 + n. - _Michel Marcus_, Jul 18 2018 %F A131924 From _Colin Barker_, Jul 18 2018: (Start) %F A131924 G.f.: (1 - x - x^2 - x^3) / ((1 - x)^3*(1 - 2*x)). %F A131924 a(n) = 5*a(n-1) - 9*a(n-2) + 7*a(n-3) - 2*a(n-4) for n>3. %F A131924 (End) %e A131924 a(4) = 36 = sum of terms in row 4 of triangle A131923: (5 + 8 + 10 + 8 + 5). %e A131924 a(4) = 36 = (1, 4, 6, 4, 1) dot (1, 3, 3, 1, 1) = (1 + 12 + 18 + 4 + 1). %t A131924 Table[2^n + n^2 + n, {n, 0, 5!}] (* _Vladimir Joseph Stephan Orlovsky_, May 07 2010 *) %t A131924 LinearRecurrence[{5,-9,7,-2},{1,4,10,20},40] (* _Harvey P. Dale_, Jul 22 2021 *) %o A131924 (GAP) a:=List(List([0..32],n->List([0..n],k->Binomial(n,k)+n)),Sum); # _Muniru A Asiru_, Jul 17 2018 %o A131924 (PARI) Vec((1 - x - x^2 - x^3) / ((1 - x)^3*(1 - 2*x)) + O(x^40)) \\ _Colin Barker_, Jul 18 2018 %Y A131924 Cf. A131923. %K A131924 nonn,easy %O A131924 0,2 %A A131924 _Gary W. Adamson_, Jul 29 2007 %E A131924 More terms from _Vladimir Joseph Stephan Orlovsky_, May 07 2010