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 A170740 #31 Sep 08 2022 08:45:49 %S A170740 1,21,420,8400,168000,3360000,67200000,1344000000,26880000000, %T A170740 537600000000,10752000000000,215040000000000,4300800000000000, %U A170740 86016000000000000,1720320000000000000,34406400000000000000,688128000000000000000,13762560000000000000000,275251200000000000000000 %N A170740 Expansion of g.f.: (1+x)/(1-20*x). %H A170740 Kenny Lau, <a href="/A170740/b170740.txt">Table of n, a(n) for n = 0..768</a> %H A170740 <a href="/index/Rec#order_01">Index entries for linear recurrences with constant coefficients</a>, signature (20). %F A170740 a(n) = Sum_{k=0..n} A097805(n,k)*(-1)^(n-k)*21^k. - _Philippe Deléham_, Dec 04 2009 %F A170740 a(0) = 1; for n>0, a(n) = 21*20^(n-1). - _Vincenzo Librandi_, Dec 05 2009 %F A170740 E.g.f: (21*exp(20*x) - 1)/20. - _G. C. Greubel_, Sep 24 2019 %p A170740 k:=21; seq(`if`(n=0, 1, k*(k-1)^(n-1)), n = 0..25); # _G. C. Greubel_, Sep 24 2019 %t A170740 Join[{1}, 21*20^Range[0, 25]] (* _Vladimir Joseph Stephan Orlovsky_, Jul 13 2011 *) %o A170740 (Python) for i in range(31):print(i,21*20**(i-1) if i>0 else 1) # _Kenny Lau_, Aug 01 2017 %o A170740 (PARI) vector(26, n, k=21; if(n==1, 1, k*(k-1)^(n-2))) \\ _G. C. Greubel_, Sep 24 2019 %o A170740 (Magma) k:=21; [1] cat [k*(k-1)^(n-1): n in [1..25]]; // _G. C. Greubel_, Sep 24 2019 %o A170740 (Sage) k=21; [1]+[k*(k-1)^(n-1) for n in (1..25)] # _G. C. Greubel_, Sep 24 2019 %o A170740 (GAP) k:=21;; Concatenation([1], List([1..25], n-> k*(k-1)^(n-1) )); # _G. C. Greubel_, Sep 24 2019 %Y A170740 Cf. A003945, A097805. %K A170740 nonn,easy %O A170740 0,2 %A A170740 _N. J. A. Sloane_, Dec 04 2009