A089357 a(n) = 2^(6*n).
1, 64, 4096, 262144, 16777216, 1073741824, 68719476736, 4398046511104, 281474976710656, 18014398509481984, 1152921504606846976, 73786976294838206464, 4722366482869645213696, 302231454903657293676544, 19342813113834066795298816
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (64).
Programs
-
Magma
[2^(6*n): n in [0..20]]; // Vincenzo Librandi, Jun 07 2011
-
Maple
seq(2^(6*n), n=0..14); # Nathaniel Johnston, Jun 26 2011
-
Mathematica
2^(6 Range[0,20]) (* or *) NestList[64#&,1,20] (* Harvey P. Dale, Sep 28 2011 *)
-
Maxima
makelist(2^(6*n),n,0,20); /* Martin Ettl, Nov 12 2012 */
-
PARI
a(n)=64^n \\ Charles R Greathouse IV, Jul 02 2016
Formula
G.f.: 1/(1-64*x). - Philippe Deléham, Nov 24 2008
a(n) = 63*a(n-1) + 64^(n-1), a(0)=1. - Vincenzo Librandi, Jun 07 2011
E.g.f.: exp(64*x). - Ilya Gutkovskiy, Jul 02 2016
a(n) = 64*a(n-1). - Miquel Cerda, Oct 27 2016
Comments