A009973 Powers of 29.
1, 29, 841, 24389, 707281, 20511149, 594823321, 17249876309, 500246412961, 14507145975869, 420707233300201, 12200509765705829, 353814783205469041, 10260628712958602189, 297558232675799463481, 8629188747598184440949
Offset: 0
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (29).
Programs
-
Magma
[29^n: n in [0..30]]; // Vincenzo Librandi, Nov 21 2010
-
Maple
A009973:=n->29^n; seq(A009973(n), n=0..20); # Wesley Ivan Hurt, Jun 06 2014
-
Mathematica
29^Range[0,20] (* Harvey P. Dale, Jul 19 2011 *)
-
Maxima
makelist(29^n, n, 0, 30); /* Martin Ettl, Nov 07 2012 */
-
PARI
a(n)=29^n \\ Charles R Greathouse IV, Sep 24 2015
-
Sage
[29^n for n in (1..17)] # Zerinvary Lajos, Apr 29 2009
Formula
G.f.: 1/(1-29*x). - Philippe Deléham, Nov 24 2008
a(n) = 29^n; a(n) = 29*a(n-1) for n>0, a(0)=1. - Vincenzo Librandi, Nov 21 2010
G.f.: (G(0)-2)/(9*x), where G(k)= 1 + 1/(1 - x*(9*k-9)/(x*(9*k+20) - 2/G(k+1))); (continued fraction). - Sergei N. Gladkovskii, Jun 17 2013
Comments