A009989 Powers of 45.
1, 45, 2025, 91125, 4100625, 184528125, 8303765625, 373669453125, 16815125390625, 756680642578125, 34050628916015625, 1532278301220703125, 68952523554931640625, 3102863559971923828125, 139628860198736572265625, 6283298708943145751953125, 282748441902441558837890625
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 (45).
Programs
-
Magma
[45^n: n in [0..20]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
45^Range[0,20] (* Harvey P. Dale, May 09 2012 *)
-
PARI
a(n)=45^n \\ Charles R Greathouse IV, Oct 07 2015
Formula
G.f.: 1/(1-45*x). - Philippe Deléham, Nov 24 2008
a(n) = 45^n; a(n) = 45*a(n-1), a(0)=1. - Vincenzo Librandi, Nov 21 2010
From Elmo R. Oliveira, Jul 10 2025: (Start)
E.g.f.: exp(45*x).
Comments