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-4 of 4 results.

A091355 Triangle read by rows: T(n,k) = number of planar partitions of n with k rows.

Original entry on oeis.org

1, 2, 1, 3, 2, 1, 5, 5, 2, 1, 7, 9, 5, 2, 1, 11, 18, 11, 5, 2, 1, 15, 30, 22, 11, 5, 2, 1, 22, 53, 42, 24, 11, 5, 2, 1, 30, 85, 78, 46, 24, 11, 5, 2, 1, 42, 139, 138, 90, 48, 24, 11, 5, 2, 1, 56, 215, 239, 164, 94, 48, 24, 11, 5, 2, 1, 77, 336, 405, 298, 176, 96, 48, 24, 11, 5, 2, 1, 101, 504, 669, 520, 324, 180, 96, 48, 24, 11, 5, 2, 1
Offset: 1

Views

Author

Christian G. Bower, Jan 02 2004

Keywords

Comments

Row sums give A000219.
Columns 1-5 are respectively A000041, A091356, A091357, A091358, and A091359.
Columns converge to A091360.

Examples

			Triangle starts:
01:  1,
02:  2, 1,
03:  3, 2, 1,
04:  5, 5, 2, 1,
05:  7, 9, 5, 2, 1,
06:  11, 18, 11, 5, 2, 1,
07:  15, 30, 22, 11, 5, 2, 1,
08:  22, 53, 42, 24, 11, 5, 2, 1,
09:  30, 85, 78, 46, 24, 11, 5, 2, 1,
10:  42, 139, 138, 90, 48, 24, 11, 5, 2, 1,
11:  56, 215, 239, 164, 94, 48, 24, 11, 5, 2, 1,
12:  77, 336, 405, 298, 176, 96, 48, 24, 11, 5, 2, 1,
13:  101, 504, 669, 520, 324, 180, 96, 48, 24, 11, 5, 2, 1,
14:  135, 760, 1088, 899, 580, 336, 182, 96, 48, 24, 11, 5, 2, 1,
15:  176, 1115, 1741, 1512, 1020, 606, 340, 182, 96, 48, 24, 11, 5, 2, 1,
...
		

Programs

  • Maple
    with(numtheory):
    A:= proc(n, k) option remember; `if`(n=0, 1, add(add(
          min(d, k)*d, d=divisors(j))*A(n-j, k), j=1..n)/n)
        end:
    T:= (n, k)-> A(n, k)-`if`(k=0, 0, A(n, k-1)):
    seq(seq(T(n, k), k=1..n), n=1..15);  # Alois P. Heinz, Mar 15 2014
  • Mathematica
    (* load EulerTransform from 'seqtranslib.m' under OEIS-Transforms *) Table[EulerTransform[Table[Min[c, r], {r, 20}]] - EulerTransform[Table[Min[c-1, r], {r, 20}]], {c, 20}] // Transpose
    (* second program: *)
    A[n_, k_] := A[n, k] = If[n == 0, 1, Sum[Sum[Min[d, k]*d, {d, Divisors[j]}] *A[n-j, k], {j, 1, n}]/n]; T[n_, k_] := A[n, k] - If[k == 0, 0, A[n, k-1] ]; Table[Table[T[n, k], {k, 1, n}], {n, 1, 15}] // Flatten (* Jean-François Alcover, Jan 23 2016, after Alois P. Heinz *)

Formula

k-th column is EulerTransform[1, 2, 3, .., k, k, k, ..]-EulerTransform[1, 2, 3, .., k-1, k-1, k-1, ..]. - Wouter Meeussen, Aug 29 2004

Extensions

Definition corrected, Joerg Arndt, Jul 21 2014

A091357 Number of planar partitions of n with exactly 3 rows.

Original entry on oeis.org

1, 2, 5, 11, 22, 42, 78, 138, 239, 405, 669, 1088, 1741, 2744, 4267, 6564, 9975, 15019, 22394, 33111, 48549, 70678, 102127, 146636, 209186, 296697, 418401, 586985, 819218, 1137962, 1573336, 2165888, 2968914, 4053563, 5512820, 7469989
Offset: 3

Views

Author

Christian G. Bower, Jan 02 2004

Keywords

Crossrefs

Column 3 of A091355.

Formula

a(n) = A000991(n)-A000990(n).

A091358 Number of planar partitions of n with exactly 4 rows.

Original entry on oeis.org

1, 2, 5, 11, 24, 46, 90, 164, 298, 520, 899, 1512, 2521, 4116, 6659, 10609, 16753, 26126, 40419, 61889, 94067, 141736, 212123, 315087, 465162, 682188, 994857, 1442340, 2080332, 2984724, 4262018, 6056849, 8569913, 12072770, 16938556
Offset: 4

Views

Author

Christian G. Bower, Jan 02 2004

Keywords

Crossrefs

Column 4 of A091355. Cf. A000219, A091356-A091360.

Formula

a(n) = A002799(n)-A000991(n).

A091359 Number of planar partitions of n with exactly 5 rows.

Original entry on oeis.org

1, 2, 5, 11, 24, 48, 94, 176, 324, 580, 1020, 1757, 2985, 4990, 8237, 13428, 21651, 34540, 54583, 85473, 132730, 204484, 312695, 474814, 716217, 1073558, 1599568, 2369781, 3491812, 5118490, 7465789, 10837964, 15661666, 22533586, 32284480
Offset: 5

Views

Author

Christian G. Bower, Jan 02 2004

Keywords

Crossrefs

Column 5 of A091355. Cf. A000219, A091356-A091360.

Formula

a(n) = A001452(n)-A002799(n).
Showing 1-4 of 4 results.