A009974 Powers of 30.
1, 30, 900, 27000, 810000, 24300000, 729000000, 21870000000, 656100000000, 19683000000000, 590490000000000, 17714700000000000, 531441000000000000, 15943230000000000000, 478296900000000000000, 14348907000000000000000, 430467210000000000000000, 12914016300000000000000000
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 (30).
Programs
-
Magma
[30^n: n in [0..100]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
NestList[30#&,1,20] (* Harvey P. Dale, Jul 21 2023 *)
-
PARI
a(n)=30^n \\ Charles R Greathouse IV, Jun 19 2015
-
PARI
powers(30,12) \\ Charles R Greathouse IV, Jun 19 2015
-
Sage
[lucas_number1(n,30,0) for n in range(1, 17)] # Zerinvary Lajos, Apr 29 2009
Formula
G.f.: 1/(1-30*x). - Philippe Deléham, Nov 24 2008
a(n) = 30^n; a(n) = 30*a(n-1), n > 0; a(0)=1. - Vincenzo Librandi, Nov 21 2010
From Elmo R. Oliveira, Jul 10 2025: (Start)
E.g.f.: exp(30*x).
Comments