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 A016750 #27 Sep 08 2022 08:44:41 %S A016750 0,1024,1048576,60466176,1073741824,10000000000,61917364224, %T A016750 289254654976,1099511627776,3570467226624,10240000000000, %U A016750 26559922791424,63403380965376,141167095653376,296196766695424,590490000000000,1125899906842624,2064377754059776,3656158440062976 %N A016750 a(n) = (2*n)^10. %H A016750 Vincenzo Librandi, <a href="/A016750/b016750.txt">Table of n, a(n) for n = 0..10000</a> %H A016750 <a href="/index/Rec#order_11">Index entries for linear recurrences with constant coefficients</a>, signature (11,-55,165,-330,462,-462,330,-165,55,-11,1). %F A016750 G.f.: -1024*x*(1+x)*(x^8 + 1012*x^7 + 46828*x^6 + 408364*x^5 + 901990*x^4 + 408364*x^3 + 46828*x^2 + 1012*x + 1)/(x-1)^11. - _R. J. Mathar_, Jul 07 2017 %F A016750 From _Amiram Eldar_, Oct 11 2020: (Start) %F A016750 Sum_{n>=1} 1/a(n) = Pi^10/95800320. %F A016750 Sum_{n>=1} (-1)^(n+1)/a(n) = 73*Pi^10/7007109120. (End) %p A016750 A016750:=n->(2*n)^10: seq(A016750(n), n=0..30); # _Wesley Ivan Hurt_, Sep 15 2018 %t A016750 Table[(2*n)^10, {n,0,30}] (* _G. C. Greubel_, Sep 15 2018 *) %t A016750 LinearRecurrence[{11,-55,165,-330,462,-462,330,-165,55,-11,1},{0,1024,1048576,60466176,1073741824,10000000000,61917364224,289254654976,1099511627776,3570467226624,10240000000000},30] (* _Harvey P. Dale_, May 11 2022 *) %o A016750 (Magma) [(2*n)^10: n in [0..20]]; // _Vincenzo Librandi_, Sep 05 2011 %o A016750 (PARI) vector(30, n, n--; (2*n)^10) \\ _G. C. Greubel_, Sep 15 2018 %Y A016750 Cf. A016762. %K A016750 nonn,easy %O A016750 0,2 %A A016750 _N. J. A. Sloane_