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 A170741 #29 Sep 08 2022 08:45:49 %S A170741 1,22,462,9702,203742,4278582,89850222,1886854662,39623947902, %T A170741 832102905942,17474161024782,366957381520422,7706105011928862, %U A170741 161828205250506102,3398392310260628142,71366238515473190982,1498691008824937010622,31472511185323677223062,660922734891797221684302 %N A170741 Expansion of g.f.: (1+x)/(1-21*x). %H A170741 Kenny Lau, <a href="/A170741/b170741.txt">Table of n, a(n) for n = 0..756</a> %H A170741 <a href="/index/Rec#order_01">Index entries for linear recurrences with constant coefficients</a>, signature (21). %F A170741 a(n) = Sum_{k=0..n} A097805(n,k)*(-1)^(n-k)*22^k. - _Philippe Deléham_, Dec 04 2009 %F A170741 a(0) = 1; for n>0, a(n) = 22*21^(n-1). - _Vincenzo Librandi_, Dec 05 2009 %F A170741 E.g.f.: (22*exp(21*x) - 1)/21. - _G. C. Greubel_, Sep 25 2019 %p A170741 k:=22; seq(`if`(n=0, 1, k*(k-1)^(n-1)), n = 0..25); # _G. C. Greubel_, Sep 25 2019 %t A170741 Join[{1}, 22*21^Range[0, 25]] (* _Vladimir Joseph Stephan Orlovsky_, Jul 13 2011 *) %t A170741 Join[{1},NestList[21#&,22,20]] (* _Harvey P. Dale_, Jul 29 2018 *) %o A170741 (Python) for i in range(31):print(i,22*21**(i-1) if i>0 else 1) # _Kenny Lau_, Aug 01 2017 %o A170741 (PARI) vector(26, n, k=22; if(n==1, 1, k*(k-1)^(n-2))) \\ _G. C. Greubel_, Sep 25 2019 %o A170741 (Magma) k:=22; [1] cat [k*(k-1)^(n-1): n in [1..25]]; // _G. C. Greubel_, Sep 25 2019 %o A170741 (Sage) k=22; [1]+[k*(k-1)^(n-1) for n in (1..25)] # _G. C. Greubel_, Sep 25 2019 %o A170741 (GAP) k:=22;; Concatenation([1], List([1..25], n-> k*(k-1)^(n-1) )); # _G. C. Greubel_, Sep 25 2019 %Y A170741 Cf. A003945. %K A170741 nonn,easy %O A170741 0,2 %A A170741 _N. J. A. Sloane_, Dec 04 2009