cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A228035 Triangle T(n,k), read by rows: T(n,k) is the denominator of (1-2^(n-k+1))/(1-2^(k+1)).

Original entry on oeis.org

1, 1, 3, 1, 1, 7, 1, 3, 7, 15, 1, 1, 1, 5, 31, 1, 3, 7, 15, 31, 63, 1, 1, 7, 1, 31, 21, 127, 1, 3, 1, 15, 31, 9, 127, 255, 1, 1, 7, 5, 1, 21, 127, 85, 511, 1, 3, 7, 15, 31, 63, 127, 255, 511, 1023, 1, 1, 1, 1, 31, 1, 127, 17, 73, 341, 2047, 1, 3, 7, 15, 31, 63
Offset: 0

Views

Author

Vincenzo Librandi, Aug 12 2013

Keywords

Comments

The numerators are given in A227984.
The first diagonal is A000225, the second diagonal is A213243, the third diagonal is A213245.

Examples

			Triangle begins:
1;
1, 3;
1, 1, 7;
1, 3, 7, 15;
1, 1, 1, 5,  31;
1, 3, 7, 15, 31, 63;
1, 1, 7, 1,  31, 21, 127;
1, 3, 1, 15, 31, 9,  127, 255;
1, 1, 7, 5,  1,  21, 127, 85,  511;
1, 3, 7, 15, 31, 63, 127, 255, 511, 1023;
1, 1, 1, 1,  31, 1,  127, 17,  73,  341, 2047; etc.
		

Crossrefs

Programs

  • Magma
    [Denominator((1-2^(n-k+1))/(1-2^(k+1))): k in [0..n], n in [0..11]];
  • Mathematica
    a[n_, k_] := Denominator[(1 - 2^(n - k + 1))/(1 - 2^(k + 1))];
    Table[a[n, k], {n, 0, 11}, {k, 0, n}] // Flatten
Showing 1-1 of 1 results.