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!)
A082693 Pyramidal sequence built with powers of 2. 3
1, 2, 1, 2, 4, 2, 1, 2, 4, 8, 4, 2, 1, 2, 4, 8, 16, 8, 4, 2, 1, 2, 4, 8, 16, 32, 16, 8, 4, 2, 1, 2, 4, 8, 16, 32, 64, 32, 16, 8, 4, 2, 1, 2, 4, 8, 16, 32, 64, 128, 64, 32, 16, 8, 4, 2, 1, 2, 4, 8, 16, 32, 64, 128, 256, 128, 64, 32, 16, 8, 4, 2, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 256, 128 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
Triangle begins:
1
2 1 2
4 2 1 2 4
8 4 2 1 2 4 8
16 8 4 2 1 2 4 8 16
32 16 8 4 2 1 2 4 8 16 32
64 32 16 8 4 2 1 2 4 8 16 32 64
128 64 32 16 8 4 2 1 2 4 8 16 32 64 128
256 128 64 32 16 8 4 2 1 2 4 8 16 32 64 128 256
512 256 128 64 32 16 8 4 2 1 2 4 8 16 32 64 128 256 512
1024 512 256 128 64 32 16 8 4 2 1 2 4 8 16 32 64 128 256 512 1024
... - Philippe Deléham, Mar 20 2013
MATHEMATICA
pow2Pyram[row_] := Module[{st = 2^Range[0, row]}, Join[st, Reverse[Most[Rest[st]]]]]; Flatten[Array[pow2Pyram, 10]] (* Harvey P. Dale, May 09 2012 *)
Flatten[Table[Table[2^Abs[col], {col, -row, row}], {row, 0, 7}]] (* Alonso del Arte, Apr 15 2017 *)
PROG
(PARI) for(i=0, 9, forstep(j=i, 0, -1, print1(1<<j", ")); for(j=1, i, print1(1<<j", "))) \\ Charles R Greathouse IV, Mar 20 2013
CROSSREFS
Cf. A004738, A082693 (partial sums), A036563 (row sums).
Sequence in context: A186187 A013943 A164281 * A225081 A307368 A097082
KEYWORD
nonn,tabf,easy
AUTHOR
Benoit Cloitre, Apr 12 2003
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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)