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.

A036565 Triangle of numbers in which i-th row is {2^(i-j)*7^j, 0<=j<=i}; i >= 0.

Original entry on oeis.org

1, 2, 7, 4, 14, 49, 8, 28, 98, 343, 16, 56, 196, 686, 2401, 32, 112, 392, 1372, 4802, 16807, 64, 224, 784, 2744, 9604, 33614, 117649, 128, 448, 1568, 5488, 19208, 67228, 235298, 823543, 256, 896, 3136, 10976, 38416, 134456, 470596, 1647086, 5764801
Offset: 0

Views

Author

Keywords

Examples

			The triangle begins as:
  1;
  2,  7;
  4, 14, 49;
  8, 28, 98, 343;
  ...
		

Crossrefs

Cf. A003591.
Cf. A000079 (1st column), A000420 (diagonal), A016130 (row sums).

Programs

  • Mathematica
    row[n_] := Table[SeriesCoefficient[1/((1 - 2*x)(1 - 7*x*y)), {x, 0, i}, {y, 0, j}], {i, n, n}, {j, 0, n}]; Array[row,9,0]//Flatten (* Stefano Spezia, Aug 19 2025 *)

Formula

G.f.: 1/((1 - 2*x)(1 - 7*x*y)). - Ilya Gutkovskiy, Jun 03 2017