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.

A134700 Triangle read by rows: A000012 * A051731^2.

Original entry on oeis.org

1, 3, 1, 5, 1, 1, 8, 3, 1, 1, 10, 3, 1, 1, 1, 14, 5, 3, 1, 1, 1, 16, 5, 3, 1, 1, 1, 1, 20, 8, 3, 3, 1, 1, 1, 1, 23, 8, 5, 3, 1, 1, 1, 1, 1, 27, 10, 5, 3, 3, 1, 1, 1, 1, 1, 29, 10, 5, 3, 3, 1, 1, 1, 1, 1, 1, 35, 14, 8, 5, 3, 3, 1, 1, 1, 1, 1, 1, 37, 14, 8, 5, 3, 3, 1, 1, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Gary W. Adamson, Nov 07 2007

Keywords

Comments

Left column = A006218.
Row sums = A061201: (1, 4, 7, 13, 16, 25, 28, ...).

Examples

			First few rows of the triangle:
   1;
   3, 1;
   5, 1, 1;
   8, 3, 1, 1;
  10, 3, 1, 1, 1;
  14, 5, 3, 1, 1, 1;
  16, 5, 3, 1, 1, 1, 1;
  20, 8, 3, 3, 1, 1, 1, 1;
  23, 8, 5, 3, 1, 1, 1, 1, 1;
  ...
		

Crossrefs

Programs

  • PARI
    row(n) = my(m=matrix(n,n,i,j,!(i%j))); vector(n, k, sum(i=1, n, (m^2)[i, k])); \\ Michel Marcus, Apr 30 2025

Formula

Extensions

a(45) = 1, a(46) = 27 corrected and more terms from Georg Fischer, Jun 05 2023
More terms from Michel Marcus, Apr 30 2025