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.

A344118 Triangle of numbers T(n,k) = floor((A089072(n,k)-A019538(n,k))/A019538(n,k)) read by rows, n>=1, 1<=k<=n.

Original entry on oeis.org

0, 0, 1, 0, 0, 3, 0, 0, 1, 9, 0, 0, 0, 3, 25, 0, 0, 0, 1, 7, 63, 0, 0, 0, 0, 3, 17, 162, 0, 0, 0, 0, 2, 7, 39, 415, 0, 0, 0, 0, 1, 4, 16, 91, 1066, 0, 0, 0, 0, 0, 2, 8, 34, 212, 2754, 0, 0, 0, 0, 0, 1, 5, 16, 73, 500, 7146, 0, 0, 0, 0, 0, 1, 3, 9, 33, 160, 1190, 18612, 0
Offset: 1

Views

Author

Mohammad K. Azarian, Jul 28 2021

Keywords

Examples

			T(3, 3) = floor((27-6)/6) = 3.
Triangle begins:
  0
  0    1
  0    0    3
  0    0    1    9
  0    0    0    3    25
  0    0    0    1    7    63
  0    0    0    0    3    17    162
		

Crossrefs

Programs

  • Mathematica
    Floor[Table[(k^n - k!*StirlingS2[n, k])/(k!*StirlingS2[n, k]), {n, 15}, {k, n}]] // Flatten

Formula

T(n, k) = floor((k^n - k!*Stirling2(n, k))/(k!*Stirling2(n, k))).