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 A017361 #22 Sep 08 2022 08:44:42 %S A017361 40353607,118587876497,7625597484987,129961739795077,1119130473102767, %T A017361 6351461955384057,27206534396294947,95151694449171437, %U A017361 285544154243029527,760231058654565217,1838459212420154507,4108400332687853397 %N A017361 a(n) = (10*n + 7)^9. %H A017361 Vincenzo Librandi, <a href="/A017361/b017361.txt">Table of n, a(n) for n = 0..10000</a> %H A017361 <a href="/index/Rec#order_10">Index entries for linear recurrences with constant coefficients</a>, signature (10, -45, 120, -210, 252, -210, 120, -45, 10, -1). %F A017361 a(n) = 10*a(n-1) - 45*a(n-2) + 120*a(n-3) - 210*a(n-4) + 252*a(n-5) - 210*a(n-6) + 120*a(n-7) - 45*a(n-8) + 10*a(n-9) - a(n-10); a(0)=40353607, a(1)=118587876497, a(2)=7625597484987, a(3)=129961739795077, a(4)=1119130473102767, a(5)=6351461955384057, a(6)=27206534396294947, a(7)=95151694449171437, a(8)=285544154243029527, a(9)=760231058654565217. - _Harvey P. Dale_, Dec 28 2011 %t A017361 (10*Range[0,30]+7)^9 (* or *) LinearRecurrence[{10,-45,120,-210,252,-210,120,-45,10,-1},{40353607,118587876497,7625597484987,129961739795077,1119130473102767,6351461955384057,27206534396294947,95151694449171437,285544154243029527,760231058654565217},30] (* _Harvey P. Dale_, Dec 28 2011 *) %o A017361 (Magma) [(10*n+7)^9: n in [0..20]]; // _Vincenzo Librandi_, Aug 30 2011 %o A017361 (PARI) vector(20, n, n--; (10*n+7)^9) \\ _G. C. Greubel_, Nov 10 2018 %Y A017361 Cf. A017353 (10n+7), A001017 (n^9). %K A017361 nonn,easy %O A017361 0,1 %A A017361 _N. J. A. Sloane_