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

A300124 Number of ways to tile the diagram of an integer partition of n using connected skew partitions.

Original entry on oeis.org

1, 4, 12, 42, 120, 416, 1184, 3888
Offset: 1

Views

Author

Gus Wiseman, Feb 25 2018

Keywords

Comments

The diagram of a connected skew partition is required to be connected as a polyomino but can have empty rows or columns.

Crossrefs

A300789 Heinz numbers of integer partitions whose Young diagram can be tiled by dominos.

Original entry on oeis.org

1, 3, 4, 7, 9, 10, 12, 13, 16, 19, 21, 22, 25, 27, 28, 29, 34, 36, 37, 39, 40, 43, 46, 48, 49, 52, 53, 55, 57, 61, 62, 63, 64, 70, 71, 75, 76, 79, 81, 82, 84, 85, 87, 88, 89, 90, 91, 94, 100, 101, 107, 108, 111, 112, 113, 115, 116, 117, 118, 121, 129, 130, 131
Offset: 1

Views

Author

Gus Wiseman, Mar 12 2018

Keywords

Comments

The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
This sequence is conjectured to be the Heinz numbers of integer partitions in which the odd parts appear as many times in even as in odd positions.

Examples

			Sequence of integer partitions whose Young diagram can be tiled by dominos begins: (), (2), (11), (4), (22), (31), (211), (6), (1111), (8), (42), (51), (33), (222), (411).
		

Crossrefs

Programs

  • Maple
    a:= proc(n) option remember; local k; for k from 1+
          `if`(n=1, 0, a(n-1)) while (l-> add(`if`(l[i]::odd,
           (-1)^i, 0), i=1..nops(l))<>0)(sort(map(i->
           numtheory[pi](i[1])$i[2], ifactors(k)[2]))) do od; k
        end:
    seq(a(n), n=1..100);  # Alois P. Heinz, May 22 2018
  • Mathematica
    primeMS[n_]:=If[n===1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
    Select[Range[100],Total[(-1)^Flatten[Position[primeMS[#],_?OddQ]]]===0&] (* Conjectured *)

A300118 Number of skew partitions whose quotient diagram is connected and whose numerator is the integer partition with Heinz number n.

Original entry on oeis.org

1, 2, 3, 3, 4, 4, 5, 4, 6, 5, 6, 5, 7, 6, 7, 5, 8, 7, 9, 6, 8, 7, 10, 6, 10, 8, 10, 7, 11, 8, 12, 6, 9, 9, 11, 8, 13, 10, 10, 7, 14, 9, 15, 8, 11, 11, 16, 7, 15, 11, 11, 9, 17, 11, 12, 8, 12, 12, 18, 9, 19, 13, 12, 7, 13, 10, 20, 10, 13, 12, 21, 9, 22, 14, 15, 11
Offset: 1

Views

Author

Gus Wiseman, Feb 25 2018

Keywords

Comments

The diagram of a connected skew partition is required to be connected as a polyomino but can have empty rows or columns.

Examples

			The a(15) = 7 denominators are (), (1), (11), (22), (3), (31), (32) with diagrams:
o o o   . o o   . o o   . . o   . . .   . . .   o o o
o o     o o     . o     . .     o o     . o     o o
Missing are the two disconnected skew partitions:
. . o   . . o
o o     . o
		

Crossrefs

Programs

  • Mathematica
    primeMS[n_]:=If[n===1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
    undcon[y_]:=Select[Tuples[Range[0,#]&/@y],Function[v,GreaterEqual@@v&&With[{r=Select[Range[Length[y]],y[[#]]=!=v[[#]]&]},Or[Length[r]<=1,And@@Table[v[[i]]
    				

A299966 Number of normal generalized Young tableaux, of shape the integer partition with Heinz number n, with all rows and columns weakly increasing and all regions non-singleton skew-partitions.

Original entry on oeis.org

1, 0, 1, 1, 1, 1, 2, 1, 3, 3, 3, 3, 5, 5, 5, 2, 8, 5, 13, 6, 13, 10, 21, 5, 11, 18, 11, 14, 34, 15, 55, 3, 26, 33, 23, 13, 89, 59, 54, 14, 144, 38, 233, 28, 31, 105, 377, 10, 47, 31, 106, 57, 610, 23, 60, 32, 206, 185, 987, 38, 1597, 324, 91, 5, 132, 93, 2584, 111
Offset: 1

Views

Author

Gus Wiseman, Feb 22 2018

Keywords

Comments

A generalized Young tableau of shape y is an array obtained by replacing the dots in the Ferrers diagram of y with positive integers. A tableau is normal if its entries span an initial interval of positive integers. The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).

Examples

			The a(25) = 11 tableaux:
1 2 3   1 2 2   1 1 3   1 1 2
1 2 3   1 3 3   2 2 3   2 3 3
.
1 2 2   1 1 2   1 1 2   1 1 2   1 1 1   1 1 1
1 2 2   2 2 2   1 2 2   1 1 2   2 2 2   1 2 2
.
1 1 1
1 1 1
		

References

  • Bruce E. Sagan, The Symmetric Group, Springer-Verlag New York, 2001.

Crossrefs

Programs

  • Mathematica
    primeMS[n_]:=If[n===1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
    undptns[y_]:=DeleteCases[Select[Tuples[Range[0,#]&/@y],OrderedQ[#,GreaterEqual]&],0,{2}];
    eh[y_]:=If[Total[y]=!=1,1,0]+Sum[eh[c],{c,Select[undptns[y],Total[#]>1&&Total[y]-Total[#]>1&]}];
    Table[eh[Reverse[primeMS[n]]],{n,60}]

A285175 Number of normal generalized Young tableaux, of shape the integer partition with Heinz number n, with all rows and columns strictly increasing.

Original entry on oeis.org

1, 1, 1, 1, 1, 3, 1, 1, 3, 5, 1, 5, 1, 7, 11, 1, 1, 11, 1, 13, 23, 9, 1, 7, 11, 11, 11, 25, 1, 51, 1, 1, 39, 13, 45, 23, 1, 15, 59, 25, 1, 135, 1, 41, 73, 17, 1, 9, 45, 73, 83, 61, 1, 45, 107, 63, 111, 19, 1, 135, 1, 21, 259, 1, 205, 279, 1, 85, 143, 349, 1
Offset: 1

Views

Author

Gus Wiseman, Feb 26 2018

Keywords

Comments

A generalized Young tableau of shape y is an array obtained by replacing the dots in the Ferrers diagram of y with positive integers. A tableau is normal if its entries span an initial interval of positive integers. The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).

Examples

			The a(15) = 11 tableaux:
1 2 3   1 2 4   1 3 4   1 2 5   1 3 5
4 5     3 5     2 5     3 4     2 4
.
1 2 3   1 2 3   1 2 4   1 2 4   1 3 4
2 4     3 4     2 3     3 4     2 4
.
1 2 3
2 3
		

Crossrefs

Programs

  • Mathematica
    a[n_]:=If[n===1,1,Sum[a[n/q*Times@@Cases[FactorInteger[q],{p_,k_}:>If[p===2,1,NextPrime[p,-1]^k]]],{q,Select[Rest[Divisors[n]],SquareFreeQ]}]];
    Array[a,100]

A299967 Number of normal generalized Young tableaux of size n with all rows and columns weakly increasing and all regions non-singleton skew-partitions.

Original entry on oeis.org

1, 0, 2, 3, 13, 32, 121, 376, 1406, 5030, 19632, 76334, 314582, 1308550, 5667494, 24940458, 113239394, 523149560, 2480434938, 11968944532, 59051754824
Offset: 0

Views

Author

Gus Wiseman, Feb 22 2018

Keywords

Comments

A generalized Young tableau of shape y is an array obtained by replacing the dots in the Ferrers diagram of y with positive integers. A tableau is normal if its entries span an initial interval of positive integers.

Examples

			The a(4) = 13 tableaux:
1 1 2 2   1 1 1 1
.
1 2 2   1 1 2   1 1 1
1       2       1
.
1 2   1 1   1 1
1 2   2 2   1 1
.
1 2  1 1   1 1
1    2     1
2    2     1
.
1   1
1   1
2   1
2   1
		

Crossrefs

Programs

  • Mathematica
    undptns[y_]:=DeleteCases[Select[Tuples[Range[0,#]&/@y],OrderedQ[#,GreaterEqual]&],0,{2}];
    ehn[y_]:=ehn[y]=If[Total[y]=!=1,1,0]+Sum[ehn[c],{c,Select[undptns[y],Total[#]>1&&Total[y]-Total[#]>1&]}];
    Table[Sum[ehn[y],{y,IntegerPartitions[n]}],{n,15}]
Previous Showing 11-16 of 16 results.