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.

A016757 a(n) = (2*n+1)^5.

This page as a plain text file.
%I A016757 #32 Sep 08 2022 08:44:41
%S A016757 1,243,3125,16807,59049,161051,371293,759375,1419857,2476099,4084101,
%T A016757 6436343,9765625,14348907,20511149,28629151,39135393,52521875,
%U A016757 69343957,90224199,115856201,147008443,184528125,229345007,282475249,345025251,418195493,503284375,601692057
%N A016757 a(n) = (2*n+1)^5.
%H A016757 Vincenzo Librandi, <a href="/A016757/b016757.txt">Table of n, a(n) for n = 0..10000</a>
%H A016757 <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (6,-15,20,-15,6,-1).
%F A016757 G.f.: (1+x)*(x^4 +236*x^3 +1446*x^2 +236*x +1)/(x-1)^6 . - _R. J. Mathar_, Jul 07 2017
%F A016757 From _Amiram Eldar_, Oct 10 2020: (Start)
%F A016757 Sum_{n>=0} 1/a(n) = 31*zeta(5)/32.
%F A016757 Sum_{n>=0} (-1)^n/a(n) = 5*Pi^5/1536 (A175571). (End)
%t A016757 Table[(2*n+1)^5, {n,0,30}] (* _G. C. Greubel_, Sep 15 2018 *)
%t A016757 LinearRecurrence[{6,-15,20,-15,6,-1},{1,243,3125,16807,59049,161051},30] (* _Harvey P. Dale_, Sep 04 2022 *)
%o A016757 (Magma) [(2*n+1)^5: n in [0..30]]; // _Vincenzo Librandi_, Sep 07 2011
%o A016757 (Maxima) makelist((2*n+1)^5, n, 0, 20); /* _Martin Ettl_, Nov 12 2012 */
%o A016757 (PARI) vector(30, n, n--; (2*n+1)^5) \\ _G. C. Greubel_, Sep 15 2018
%Y A016757 Cf. A175571.
%K A016757 nonn,easy
%O A016757 0,2
%A A016757 _N. J. A. Sloane_