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 A132734 #11 Feb 14 2021 18:39:22 %S A132734 1,2,5,16,43,102,225,476,983,2002,4045,8136,16323,32702,65465,130996, %T A132734 262063,524202,1048485,2097056,4194203,8388502,16777105,33554316, %U A132734 67108743,134217602,268435325,536870776,1073741683,2147483502,4294967145,8589934436,17179869023 %N A132734 Row sums of triangle A132733. %H A132734 Andrew Howroyd, <a href="/A132734/b132734.txt">Table of n, a(n) for n = 0..1000</a> %H A132734 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (4,-5,2) %F A132734 Binomial transform of [1, 1, 2, 6, 2, 6, 2, 6, ...]. %F A132734 From _Andrew Howroyd_, Sep 01 2018: (Start) %F A132734 a(n) = 4*2^n - 5*n - 1 for n > 0. %F A132734 a(n) = 4*a(n-1) - 5*a(n-2) + 2*a(n-3) for n > 3. %F A132734 G.f.: (1 - 2*x + 2*x^2 + 4*x^3)/((1 - x)^2*(1 - 2*x)). (End) %F A132734 E.g.f.: -2 - (1 + 5*x)*exp(x) + 4*exp(2*x). - _G. C. Greubel_, Feb 14 2021 %e A132734 a(3) = 16 = sum of row 3 terms of triangle A132733: (1 + 7 + 7 + 1). %e A132734 a(3) = 16 = (1, 3, 3, 1) dot (1, 1, 2, 6) = (1 + 3 + 6 + 6). %t A132734 Table[2^(n+2) -(5*n+1) -2*Boole[n==0], {n,0,30}] (* _G. C. Greubel_, Feb 14 2021 *) %o A132734 (PARI) a(n)={if(n==0, 1, 4*2^n - 5*n - 1)} \\ _Andrew Howroyd_, Sep 01 2018 %o A132734 (PARI) Vec((1 - 2*x + 2*x^2 + 4*x^3)/((1 - x)^2*(1 - 2*x)) + O(x^40)) \\ _Andrew Howroyd_, Sep 01 2018 %o A132734 (Sage) [1]+[2^(n+2) -(5*n +1) for n in (1..30)] # _G. C. Greubel_, Feb 14 2021 %o A132734 (Magma) [1] cat [2^(n+2) -(5*n +1): n in [1..30]]; // _G. C. Greubel_, Feb 14 2021 %Y A132734 Cf. A132733. %K A132734 nonn,easy %O A132734 0,2 %A A132734 _Gary W. Adamson_, Aug 26 2007 %E A132734 Terms a(10) and beyond from _Andrew Howroyd_, Sep 01 2018