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 11-12 of 12 results.

A241815 Irregular triangular array : t(n, k) = number of vertices of degree k in graph S(n) of strict partitions, where two partitions have an edge if and only if their intersection is empty.

Original entry on oeis.org

2, 2, 3, 1, 2, 1, 1, 3, 1, 1, 1, 2, 1, 1, 3, 1, 3, 1, 1, 2, 2, 2, 2, 1, 1, 3, 2, 4, 1, 1, 1, 2, 4, 2, 1, 4, 1, 3, 4, 4, 1, 4, 1, 1, 1, 3, 1, 5, 1, 4, 1, 2, 3, 1, 1, 6, 5, 6, 1, 1, 2, 2, 2, 1, 1, 2, 6, 1, 2, 5, 4, 3, 1, 2, 4, 1, 2, 6, 5, 1, 2, 8, 3, 2, 1, 1
Offset: 3

Views

Author

Clark Kimberling, Apr 30 2014

Keywords

Comments

The strict partitions of n are the partitions of n that have distinct parts, as in A000009 (which gives the row sums of t(n,k)).

Examples

			Rows 3 to 15 (counting the top row as row 3):
2
2
3
1 2 1
1 3 1
1 1 2 1 1
3 1 3 1
1 2 2 2 2 1
1 3 2 4 1 1
1 2 4 2 1 4 1
3 4 4 1 4 1 1
1 3 1 5 1 4 1 2 3 1
1 6 5 6 1 1 2 2 2 1
The graph S(3) is given by 3 -> 21; S(4), by 4 -> 31, S(6), by 6 -> 51, 6 -> 42, 6 -> 321, 51 -> 42, and S(8), by 8 -> 71, 8 -> 62, 8 -> 53, 8 -> 521, 8 -> 431, 71 -> 62, 71 -> 53, 62, -> 53, 62 -> 431.  The vertices of S(8) and their degrees d are easily read from the graph:  d(521) = 1, d(431) = 2, d(71) = 3, d(53) = 3, d(62) = 4, and d(8) = 5, so that row 8 (counting the top row as row 3) is 1,1,2,1,1.
		

Crossrefs

Programs

  • Mathematica
    z = 20; p[n_] := p[n] = Select[IntegerPartitions[n], DeleteDuplicates[#] == # &]; d[n_] :=  Table[Map[{p[n][[k]], #} &, DeleteCases[Flatten[Select[Map[{#, Intersection[p[n][[k]], #]} &, p[n]], #[[2]] == {} &], 1], {}]], {k, Length[p[n]]}]; u[n_] := Sort[Split[Sort[Flatten[d[n], 2]]]]; t = Table[Map[Length, u[n]]/2, {n, 1, z}]; Join[{0, 0}, Flatten[t]]  (* Peter J. C. Moses, Apr 17 2014 *)

A382959 a(n) = (n!)^2 * [(x*y)^n] Product_{k>=1} (1 + (x^k + y^k)/k!).

Original entry on oeis.org

1, 0, 0, 6, 8, 130, 342, 2590, 21240, 167730, 1874930, 46128610, 417338462, 5163377570, 542567363366, 3984766703746, 42736508056760, 681324935577810, 127138303030260258, 1011227775808000450, 14280379156264610778, 276342548314653322270, 12566141342987866203746
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 10 2025

Keywords

Crossrefs

Programs

  • Mathematica
    Table[(n!)^2 SeriesCoefficient[Product[(1 + (x^k + y^k)/k!), {k, 1, n}], {x, 0, n}, {y, 0, n}], {n, 0, 22}]
Previous Showing 11-12 of 12 results.