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 A170755 #19 Sep 08 2022 08:45:49 %S A170755 1,36,1260,44100,1543500,54022500,1890787500,66177562500, %T A170755 2316214687500,81067514062500,2837362992187500,99307704726562500, %U A170755 3475769665429687500,121651938290039062500,4257817840151367187500,149023624405297851562500 %N A170755 Expansion of g.f.: (1+x)/(1-35*x). %H A170755 G. C. Greubel, <a href="/A170755/b170755.txt">Table of n, a(n) for n = 0..644</a> %H A170755 <a href="/index/Rec#order_01">Index entries for linear recurrences with constant coefficients</a>, signature (35). %F A170755 a(n) = Sum_{k=0..n} A097805(n,k)*(-1)^(n-k)*36^k. - _Philippe Deléham_, Dec 04 2009 %F A170755 a(0) = 1; for n>0, a(n) = 36*35^(n-1). - _Vincenzo Librandi_, Dec 05 2009 %F A170755 E.g.f.: (1/35)*(36*exp(35*x) - 1). - _Stefano Spezia_, Oct 09 2019 %p A170755 k:=36; seq(`if`(n=0, 1, k*(k-1)^(n-1)), n = 0..25); # _G. C. Greubel_, Oct 09 2019 %t A170755 With[{k = 36}, Table[If[n==0, 1, k*(k-1)^(n-1)], {n, 0, 25}]] (* _G. C. Greubel_, Oct 09 2019 *) %o A170755 (PARI) vector(26, n, k=36; if(n==1, 1, k*(k-1)^(n-2))) \\ _G. C. Greubel_, Oct 09 2019 %o A170755 (Magma) k:=36; [1] cat [k*(k-1)^(n-1): n in [1..25]]; // _G. C. Greubel_, Oct 09 2019 %o A170755 (Sage) k=36; [1]+[k*(k-1)^(n-1) for n in (1..25)] # _G. C. Greubel_, Oct 09 2019 %o A170755 (GAP) k:=36;; Concatenation([1], List([1..25], n-> k*(k-1)^(n-1) )); # _G. C. Greubel_, Oct 09 2019 %Y A170755 Cf. A003945. %K A170755 nonn,easy %O A170755 0,2 %A A170755 _N. J. A. Sloane_, Dec 04 2009