A165800 Powers of 50.
1, 50, 2500, 125000, 6250000, 312500000, 15625000000, 781250000000, 39062500000000, 1953125000000000, 97656250000000000, 4882812500000000000, 244140625000000000000, 12207031250000000000000, 610351562500000000000000, 30517578125000000000000000, 1525878906250000000000000000
Offset: 0
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- Index entries for linear recurrences with constant coefficients, signature (50).
Programs
-
Magma
[50^n: n in [0..20]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
50^Range[0, 20] (* Paolo Xausa, Jul 09 2025 *)
-
Maxima
A165800(n):=50^n$ makelist(A165800(n),n,0,30); /* Martin Ettl, Nov 06 2012 */
-
PARI
a(n)=50^n \\ Charles R Greathouse IV, Jun 19 2015
-
PARI
powers(50,8) \\ Charles R Greathouse IV, Jun 19 2015
Formula
G.f.: 1/(1-50*x).
a(n) = 50^n; a(n) = 50*a(n-1) a(0)=1. - Vincenzo Librandi, Nov 21 2010
From G. C. Greubel, Apr 08 2016: (Start)
From Elmo R. Oliveira, Jul 08 2025: (Start)
E.g.f.: exp(50*x).
Comments