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!)
A130127 Triangle defined by A000012 * A130125, read by rows. 2
1, 1, 2, 2, 2, 4, 2, 4, 4, 8, 3, 4, 8, 8, 16, 3, 6, 8, 16, 16, 32, 4, 6, 12, 16, 32, 32, 64, 4, 8, 12, 24, 32, 64, 64, 128, 5, 8, 16, 24, 48, 64, 128, 128, 256, 5, 10, 16, 32, 48, 96, 128, 256, 256, 512, 6, 10, 20, 32, 64, 96, 192, 256, 512, 512, 1024, 6, 12, 20, 40, 64, 128, 192, 384, 512, 1024, 1024, 2048 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Row sums = A011377: (1, 3, 8, 18, 39, ...). A130126 = A130125 * A000012.
LINKS
FORMULA
T(n,k) = 2^(k-1) * floor((n-k+2)/2). - G. C. Greubel, Jun 06 2019
EXAMPLE
First few rows of the triangle:
1;
1, 2;
2, 2, 4;
2, 4, 4, 8;
3, 4, 8, 8, 16;
3, 6, 8, 16, 16, 32;
4, 6, 12, 16, 32, 32, 64;
...
MATHEMATICA
Table[2^(k-1)*Floor[(n-k+2)/2], {n, 1, 12}, {k, 1, n}]//Flatten (* G. C. Greubel, Jun 06 2019 *)
PROG
(PARI) {T(n, k) = 2^(k-1)*floor((n-k+2)/2)}; \\ G. C. Greubel, Jun 06 2019
(Magma) [[2^(k-1)*Floor((n-k+2)/2): k in [1..n]]: n in [1..12]]; // G. C. Greubel, Jun 06 2019
(Sage) [[2^(k-1)*floor((n-k+2)/2) for k in (1..n)] for n in (1..12)] # G. C. Greubel, Jun 06 2019
CROSSREFS
Sequence in context: A368548 A240039 A369902 * A366771 A217982 A184727
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, May 11 2007
EXTENSIONS
More terms added by G. C. Greubel, Jun 06 2019
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)