A009964 Powers of 20.
1, 20, 400, 8000, 160000, 3200000, 64000000, 1280000000, 25600000000, 512000000000, 10240000000000, 204800000000000, 4096000000000000, 81920000000000000, 1638400000000000000, 32768000000000000000
Offset: 0
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- Allan Bickle, Degrees of Menger and Sierpinski Graphs, Congr. Num. 227 (2016) 197-208.
- Allan Bickle, MegaMenger Graphs, The College Mathematics Journal, 49 1 (2018) 20-26.
- Tanya Khovanova, Recursive Sequences
- Eric Weisstein's World of Mathematics, Menger Sponge
- Eric Weisstein's World of Mathematics, Menger Sponge Graph
- Eric Weisstein's World of Mathematics, Vertex Count
- Wikipedia, Menger sponge
- Index entries for linear recurrences with constant coefficients, signature (20).
Crossrefs
Programs
-
GAP
List([0..20],n->20^n); # Muniru A Asiru, Nov 21 2018
-
Magma
[20^n: n in [0..100]] // Vincenzo Librandi, Nov 21 2010
-
Maple
[20^n$n=0..20]; # Muniru A Asiru, Nov 21 2018
-
Mathematica
20^Range[0, 10] (* or *) LinearRecurrence[{20}, {1}, 20] (* Eric W. Weisstein, Aug 17 2017 *)
-
Maxima
makelist(20^n,n,0,30); /* Martin Ettl, Nov 05 2012 */
-
PARI
a(n)=20^n \\ Charles R Greathouse IV, Jun 19 2015
-
PARI
powers(20,12) \\ Charles R Greathouse IV, Jun 19 2015
-
Python
[20**n for n in range(21)] # Stefano Spezia, Nov 21 2018
-
Sage
[20^n for n in range(21)] # Zerinvary Lajos, Apr 29 2009
Formula
G.f.: 1/(1-20*x).
E.g.f.: exp(20*x).
From Vincenzo Librandi, Nov 21 2010: (Start)
a(n) = 20^n.
a(n) = 20*a(n-1) for n > 0, a(0) = 1. (End)
Comments