A009984 Powers of 40.
1, 40, 1600, 64000, 2560000, 102400000, 4096000000, 163840000000, 6553600000000, 262144000000000, 10485760000000000, 419430400000000000, 16777216000000000000, 671088640000000000000, 26843545600000000000000, 1073741824000000000000000, 42949672960000000000000000
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 (40).
Programs
-
Magma
[40^n: n in [0..20]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
40^Range[0, 19] (* Alonso del Arte, Sep 04 2016 *)
-
PARI
a(n)=40^n \\ Charles R Greathouse IV, Jun 19 2015
-
PARI
powers(40,10) \\ Charles R Greathouse IV, Jun 19 2015
Formula
G.f.: 1/(1 - 40*x). - Philippe Deléham, Nov 24 2008
a(n) = 40^n; a(n) = 40*a(n-1), a(0) = 1. - Vincenzo Librandi, Nov 21 2010
From Elmo R. Oliveira, Jul 10 2025: (Start)
E.g.f.: exp(40*x).
Comments