cp's OEIS Frontend

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.

A170746 Expansion of g.f.: (1+x)/(1-26*x).

This page as a plain text file.
%I A170746 #24 Sep 08 2022 08:45:49
%S A170746 1,27,702,18252,474552,12338352,320797152,8340725952,216858874752,
%T A170746 5638330743552,146596599332352,3811511582641152,99099301148669952,
%U A170746 2576581829865418752,66991127576500887552,1741769316989023076352,45286002241714599985152,1177436058284579599613952
%N A170746 Expansion of g.f.: (1+x)/(1-26*x).
%H A170746 Kenny Lau, <a href="/A170746/b170746.txt">Table of n, a(n) for n = 0..706</a>
%H A170746 <a href="/index/Rec#order_01">Index entries for linear recurrences with constant coefficients</a>, signature (26).
%F A170746 a(n) = Sum_{k=0..n} A097805(n,k)*(-1)^(n-k)*27^k. - _Philippe Deléham_, Dec 04 2009
%F A170746 a(0) = 1; for n>0, a(n) = 27*26^(n-1). - _Vincenzo Librandi_, Dec 05 2009
%F A170746 E.g.f.: (27*exp(26*x) - 1)/26. - _G. C. Greubel_, Sep 25 2019
%p A170746 k:=27; seq(`if`(n=0, 1, k*(k-1)^(n-1)), n = 0..25); # _G. C. Greubel_, Sep 25 2019
%t A170746 CoefficientList[Series[(1+x)/(1-26x),{x,0,20}],x] (* or *) Join[ {1}, NestList[26#&,27,20]] (* _Harvey P. Dale_, Jun 16 2016 *)
%o A170746 (Python) for i in range(31):print(i,27*26**(i-1) if i>0 else 1) # _Kenny Lau_, Aug 03 2017
%o A170746 (PARI) vector(26, n, k=27; if(n==1, 1, k*(k-1)^(n-2))) \\ _G. C. Greubel_, Sep 25 2019
%o A170746 (Magma) k:=27; [1] cat [k*(k-1)^(n-1): n in [1..25]]; // _G. C. Greubel_, Sep 25 2019
%o A170746 (Sage) k=27; [1]+[k*(k-1)^(n-1) for n in (1..25)] # _G. C. Greubel_, Sep 25 2019
%o A170746 (GAP) k:=27;; Concatenation([1], List([1..25], n-> k*(k-1)^(n-1) )); # _G. C. Greubel_, Sep 25 2019
%Y A170746 Cf. A003945, A097805.
%K A170746 nonn,easy
%O A170746 0,2
%A A170746 _N. J. A. Sloane_, Dec 04 2009