login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A013731 a(n) = 2^(3*n+2). 9
4, 32, 256, 2048, 16384, 131072, 1048576, 8388608, 67108864, 536870912, 4294967296, 34359738368, 274877906944, 2199023255552, 17592186044416, 140737488355328, 1125899906842624, 9007199254740992, 72057594037927936, 576460752303423488 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Starting rank of the (j-1)-Washtenaw series for the fixed ratio 2^(-j-1) (see Griess). - J. Taylor (jt_cpp(AT)yahoo.com), Apr 03 2004
1/4 + 1/32 + 1/256 + 1/2048 + ... = 2/7. - Gary W. Adamson, Aug 29 2008
Independence number of the (n+1)-Sierpinski carpet graph. - Eric W. Weisstein, Sep 06 2017
Clique covering number of the (n+1)-Sierpinski carpet graph. - Eric W. Weisstein, Apr 22 2019
LINKS
Robert L. Griess Jr. Pieces of 2^d: Existence and uniqueness for Barnes-Wall and Ypsilanti lattices, arXiv:math/0403480 [math.GR], Mar 28 2004. See Definition 14.21.
Tanya Khovanova, Recursive Sequences
Eric Weisstein's World of Mathematics, Clique Covering Number
Eric Weisstein's World of Mathematics, Independence Number
Eric Weisstein's World of Mathematics, Sierpinski Carpet Graph
FORMULA
From Philippe Deléham, Nov 23 2008: (Start)
a(n) = 8*a(n-1), n > 0; a(0)=4.
G.f.: 4/(1-8x). (End)
a(n) = A198852(n) + 1. - Michel Marcus, Aug 23 2013
a(n) = A092811(n+1). - Eric W. Weisstein, Sep 06 2017
MAPLE
seq(2^(3*n+2), n=0..19); # Nathaniel Johnston, Jun 26 2011
MATHEMATICA
(* Start from Eric W. Weisstein, Sep 06 2017 *)
Table[2^(3 n + 2), {n, 0, 20}]
2^(3 Range[0, 20] + 2)
LinearRecurrence[{8}, {4}, 20]
CoefficientList[Series[-(4/(-1 + 8 x)), {x, 0, 20}], x]
(* End *)
PROG
(Sage) [lucas_number1(3*n, 2, 0) for n in range(1, 20)] # Zerinvary Lajos, Oct 27 2009
(Magma) [2^(3*n+2): n in [0..20]]; // Vincenzo Librandi, Jun 26 2011
(PARI) a(n)=4<<(3*n) \\ Charles R Greathouse IV, Apr 07 2012
CROSSREFS
Cf. A013730.
Cf. A092811 (same sequence with 1 prepended).
Sequence in context: A317512 A300177 A092811 * A363440 A009509 A036725
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 11:22 EDT 2024. Contains 371913 sequences. (Running on oeis4.)