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.

Previous Showing 21-22 of 22 results.

A249042 Three-dimensional array of numbers N(r,p,m) read by triangular slices, each slice being read across rows: N(r,p,m) is the number of "r-panes in a (p,m) structure".

Original entry on oeis.org

1, 1, 1, 2, 1, 3, 4, 1, 6, 6, 1, 6, 7, 7, 24, 18, 1, 14, 36, 24, 1, 10, 11, 25, 70, 46, 15, 100, 180, 96, 1, 30, 150, 240, 120, 1, 15, 16, 65, 165, 101, 90, 455, 690, 326, 31, 360, 1170, 1440, 600, 1, 62, 540, 1560, 1800, 720
Offset: 1

Views

Author

N. J. A. Sloane, Oct 29 2014

Keywords

Comments

Three-dimensional arrays don't really work in the OEIS, but this one seems like it should be included. See Good-Tideman for precise definition.

Examples

			The initial triangular slices are:
1
-
1
1 2
---
1
3 4
1 6 6
-----
1
6 7
7 24 18
1 14 36 24
----------
1
10 11
25 70  46
15 100 180 96
1  30  150 240 120
----------------
1
15 16
65 165 101
90 455 690  326
31 360 1170 1440 600
1  62  540  1560 1800 720
		

Crossrefs

The sequence of left edges of the triangles is A008278; the bases of the triangles give A019538; the hypotenuses give A181854.

Programs

  • Mathematica
    S1[m_, n_] := Abs[StirlingS1[m, m - n]];
    S2[m_, n_] := StirlingS2[m, m - n];
    Nr[r_, p_, m_] := S2[m, p - r] Sum[S1[m - p + r, nu], {nu, 0, r}];
    Table[Nr[r, p, m], {m, 1, 6}, {p, 0, m - 1}, {r, 0, p}] // Flatten (* Jean-François Alcover, Nov 01 2018 *)

Formula

There is a formula involving Stirling numbers.

Extensions

More terms from Michel Marcus, Aug 28 2015

A143060 A007318 * [1, 15, 65, 90, 31, 1, 0, 0, 0, ...].

Original entry on oeis.org

1, 16, 96, 331, 842, 1782, 3337, 5727, 9207, 14068, 20638, 29283, 40408, 54458, 71919, 93319, 119229, 150264, 187084, 230395, 280950, 339550, 407045, 484335, 572371, 672156, 784746, 911251, 1052836, 1210722
Offset: 1

Views

Author

Gary W. Adamson, Jul 20 2008

Keywords

Examples

			a(3) = 96 = (1, 2, 1) dot (1, 15, 65) = (1 + 30 + 65).
		

Crossrefs

Formula

Binomial transform of [1, 15, 65, 90, 31, 1, 0, 0, 0, ...] where (1, 15, 65 90, 31, 1) = row 6 of triangle A008278.
G.f.: x*(1+10*x+15*x^2-25*x^3-9*x^4+9*x^5)/(1-x)^6. - Colin Barker, Feb 01 2012
Previous Showing 21-22 of 22 results.