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

A104778 Table of values with shape sequence A000041 related to involutions and multinomials. Also column sums of the Kostka matrices associated with the partitions (in Abramowitz & Stegun ordering).

Original entry on oeis.org

1, 1, 1, 2, 1, 2, 4, 1, 2, 3, 5, 10, 1, 2, 3, 5, 7, 13, 26, 1, 2, 3, 4, 5, 8, 11, 14, 20, 38, 76, 1, 2, 3, 4, 5, 8, 10, 13, 14, 23, 32, 42, 60, 116, 232, 1, 2, 3, 4, 5, 5, 8, 11, 14, 17, 14, 24, 30, 40, 56, 43, 73, 103, 136, 196, 382, 764, 1
Offset: 0

Views

Author

Alford Arnold, Mar 24 2005

Keywords

Comments

Row sums give A178718.

Examples

			The 47 multinomials (corresponding to A005651(4)=47) can be distributed as in the following triangular array:
  1
  9 1
  4 6 1
  9 2 3 1
  1 3 2 3 1
divide each term by
  1
  3 1
  2 3 1
  3 2 3 1
  1 3 2 3 1
yielding
  1
  3 1
  2 2 1
  3 1 1 1
  1 1 1 1 1
with column sums 10 5 3 2 1.
Therefore the fourth row of the table is 1 2 3 5 10
The initial rows are:
  1,
  1,
  1, 2,
  1, 2, 4,
  1, 2, 3, 5, 10,
  1, 2, 3, 5, 7, 13, 26,
  1, 2, 3, 4, 5, 8, 11, 14, 20, 38, 76,
  1, 2, 3, 4, 5, 8, 10, 13, 14, 23, 32, 42, 60, 116, 232,
  1, 2, 3, 4, 5, 5, 8, 11, 14, 17, 14, 24, 30, 40, 56, 43, 73, 103, 136, 196, 382, 764,
  ...
		

Crossrefs

Programs

  • Mathematica
    (* for function 'kostka' see A178718 *)
    aspartitions[n_] := Reverse /@ Sort[Sort /@ Partitions[n]];
    asorder[n_] := rankpartition /@ Reverse /@ Sort[Sort /@ Partitions[n]];
    Flatten[Table[Tr/@ Transpose[PadLeft[#,PartitionsP[k]] [[asorder[k]] ]&/@ kostka/@ aspartitions[k]],{k,11}]]

Extensions

Corrected and edited by Wouter Meeussen, Jan 15 2012

A104779 a(n) is the sum of entries of n-th Kostka matrix for the partitions of n.

Original entry on oeis.org

1, 1, 3, 7, 21, 57, 182, 565, 1931, 6670, 24537, 92337, 364602, 1477148, 6219031, 26875932, 119930947, 548688443, 2580814003, 12425175838, 61302331782, 309055818656, 1592723862598, 8374123173858, 44917765035082, 245452258746785, 1366116578058731, 7736098938006873
Offset: 0

Views

Author

Alford Arnold, Mar 24 2005

Keywords

Comments

a(n) is the number of symmetric nonnegative integer matrices with sum of entries equal to n, no zero rows or columns, and weakly decreasing row and column sums. - Ludovic Schwob, Aug 29 2023

Examples

			For n=4, {1,1,1,1,1} + {0,1,1,2,3} + {0,0,1,1,2} + {0,0,0,1,3} + {0,0,0,0,1} = 21.
		

Crossrefs

Programs

  • Mathematica
    (* See Meeussen link. *)

Formula

Row sums of A104778.

Extensions

a(7) corrected by Alford Arnold, Dec 31 2010
a(8)-a(21) from Amiram Eldar, May 03 2024

A115351 Sum of interior Multinomial Coefficient components.

Original entry on oeis.org

1, 1, 0, 0, 11, 96, 798, 6197, 54400, 505503, 5241223, 58377002, 712436696, 9315437345, 131487856629, 1978064399766, 31777977184459, 541010185315536, 9758067888585784, 185538235462354828, 3714549428287398782
Offset: 0

Views

Author

Alford Arnold, Jan 20 2006

Keywords

Comments

For a given value of n, the multinomial coefficients can be decomposed into components arranged in triangular fashion, as illustrated in A097522 and A104707. The values on the three edges sum to A000142(n), A000085(n) and A000041(n) respectively. Since each vertex component has the value one and appears on two of the three edges the formula is adjusted by three.

Examples

			a(5) = 96 because the sum for the below triangle is 246 and the three edges sum to 120, 26 and 7; therefore 246 - (120 + 26 + 7 - 3) = 96.
1
16 1
25 12 1
36 15 8 1
25 18 10 8 1
16 10 6 5 4 1
1 4 5 6 5 4 1
		

Crossrefs

Formula

a(n) = A005651(n) - A000142(n) - A000085(n) - A000041(n) + 3

Extensions

More terms from R. J. Mathar, Jan 23 2008
Showing 1-3 of 3 results.