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.

A072025 a(n) = n^4 + 2*n^3 + 4*n^2 + 3*n + 1 = ((n+1)^5+n^5) / (2*n+1).

This page as a plain text file.
%I A072025 #19 Sep 08 2022 08:45:06
%S A072025 1,11,55,181,461,991,1891,3305,5401,8371,12431,17821,24805,33671,
%T A072025 44731,58321,74801,94555,117991,145541,177661,214831,257555,306361,
%U A072025 361801,424451,494911,573805,661781,759511,867691,987041,1118305,1262251,1419671,1591381
%N A072025 a(n) = n^4 + 2*n^3 + 4*n^2 + 3*n + 1 = ((n+1)^5+n^5) / (2*n+1).
%H A072025 Vincenzo Librandi, <a href="/A072025/b072025.txt">Table of n, a(n) for n = 0..10000</a>
%H A072025 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (5,-10,10,-5,1).
%F A072025 From _Colin Barker_, Dec 01 2015: (Start)
%F A072025 a(n) = 5*a(n-1)-10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5) for n>4.
%F A072025 G.f.: (1+x)^2*(1+4*x+x^2) / (1-x)^5.
%F A072025 (End)
%t A072025 Table[((n+1)^5+n^5)/(2n+1),{n,0,30}] (* _Vincenzo Librandi_, Nov 23 2011 *)
%t A072025 LinearRecurrence[{5,-10,10,-5,1},{1,11,55,181,461},50] (* _Harvey P. Dale_, Dec 14 2019 *)
%o A072025 (Magma) [((n+1)^5+n^5)/(2*n+1): n in [0..40]]; // _Vincenzo Librandi_, Nov 23 2011
%o A072025 (PARI) a(n)=n^4+2*n^3+4*n^2+3*n+1 \\ _Charles R Greathouse IV_, Nov 23 2011
%o A072025 (PARI) Vec((1+x)^2*(1+4*x+x^2)/(1-x)^5 + O(x^100)) \\ _Colin Barker_, Dec 01 2015
%Y A072025 Cf. A022521, A072024.
%K A072025 nonn,easy,less
%O A072025 0,2
%A A072025 _Henry Bottomley_, Jun 06 2002