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.

A050533 Thickened pyramidal numbers: a(n) = 2*(n+1)*n + Sum_{i=1..n} (4*i*(i-1) + 1).

This page as a plain text file.
%I A050533 #34 Aug 08 2025 20:47:53
%S A050533 0,5,22,59,124,225,370,567,824,1149,1550,2035,2612,3289,4074,4975,
%T A050533 6000,7157,8454,9899,11500,13265,15202,17319,19624,22125,24830,27747,
%U A050533 30884,34249,37850,41695,45792,50149,54774,59675,64860,70337,76114,82199,88600,95325
%N A050533 Thickened pyramidal numbers: a(n) = 2*(n+1)*n + Sum_{i=1..n} (4*i*(i-1) + 1).
%C A050533 This sequence is the partial sums of A053755. - _J. M. Bergot_, May 31 2012
%H A050533 Vincenzo Librandi, <a href="/A050533/b050533.txt">Table of n, a(n) for n = 0..1000</a>
%H A050533 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1).
%F A050533 a(n) = (1/3)*n*(5 + 6*n + 4*n^2) = binomial(2*n+1, 3) + 2*(n+1)*n = A000447(n) + 4*A000217(n).
%F A050533 G.f.: x*(5+2*x+x^2)/(1-x)^4. - _Colin Barker_, Apr 16 2012
%F A050533 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - _Vincenzo Librandi_, Apr 27 2012
%F A050533 E.g.f.: exp(x)*x*(15 + 18*x + 4*x^2)/3. - _Elmo R. Oliveira_, Aug 08 2025
%t A050533 CoefficientList[Series[x*(5+2*x+x^2)/(1-x)^4,{x,0,40}],x] (* _Vincenzo Librandi_, Apr 27 2012 *)
%t A050533 LinearRecurrence[{4,-6,4,-1},{0,5,22,59},40] (* _Harvey P. Dale_, May 08 2012 *)
%o A050533 (PARI) a(n)=n*(4*n^2+6*n+5)/3 \\ _Charles R Greathouse IV_, Apr 16 2012
%o A050533 (Magma) I:=[0, 5, 22, 59]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..40]]; // _Vincenzo Librandi_, Apr 27 2012
%Y A050533 Cf. A000292, A000447, A000217, A050492, A053755.
%K A050533 nonn,easy,nice
%O A050533 0,2
%A A050533 Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Dec 29 1999