login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A321725 Irregular triangle read by rows where T(n,d) is the number of d X d non-normal semi-magic squares with sum of all entries equal to n. 2
1, 1, 2, 1, 6, 1, 3, 24, 1, 120, 1, 4, 21, 720, 1, 5040, 1, 5, 282, 40320, 1, 55, 362880, 1, 6, 6210, 3628800, 1, 39916800, 1, 7, 120, 2008, 202410, 479001600, 1, 6227020800, 1, 8, 9135630, 87178291200, 1, 231, 153040, 1307674368000, 1, 9, 10147 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
A non-normal semi-magic square is a nonnegative integer square matrix with all row sums and column sums equal to d, for some d|n.
LINKS
Wikipedia, Magic square
FORMULA
T(n,n) = n!. Sum_d T(n,d) = A321719(n). - Chai Wah Wu, Jan 15 2019
EXAMPLE
Triangle begins:
1
1 2
1 6
1 3 24
1 120
1 4 21 720
The a(6,2) = 4 semi-magic squares (zeros not shown):
[3 ] [2 1] [1 2] [ 3]
[ 3] [1 2] [2 1] [3 ]
The a(6,3) = 21 semi-magic squares (zeros not shown):
[2 ] [2 ] [2 ] [1 1 ] [1 1 ] [1 1 ] [1 1 ]
[ 2 ] [ 1 1] [ 2] [1 1 ] [1 1] [ 1 1] [ 2]
[ 2] [ 1 1] [ 2 ] [ 2] [ 1 1] [1 1] [1 1 ]
.
[1 1] [1 1] [1 1] [1 1] [ 2 ] [ 2 ] [ 2 ]
[1 1 ] [1 1] [ 2 ] [ 1 1] [2 ] [1 1] [ 2]
[ 1 1] [ 2 ] [1 1] [1 1 ] [ 2] [1 1] [2 ]
.
[ 1 1] [ 1 1] [ 1 1] [ 1 1] [ 2] [ 2] [ 2]
[2 ] [1 1 ] [1 1] [ 1 1] [2 ] [1 1 ] [ 2 ]
[ 1 1] [1 1] [1 1 ] [2 ] [ 2 ] [1 1 ] [2 ]
MATHEMATICA
prs2mat[prs_]:=Table[Count[prs, {i, j}], {i, Union[First/@prs]}, {j, Union[Last/@prs]}];
multsubs[set_, k_]:=If[k==0, {{}}, Join@@Table[Prepend[#, set[[i]]]&/@multsubs[Drop[set, i-1], k-1], {i, Length[set]}]];
Table[Length[Select[multsubs[Tuples[Range[n], 2], n], And[Union[First/@#]==Range[k]==Union[Last/@#], SameQ@@Total/@prs2mat[#], SameQ@@Total/@Transpose[prs2mat[#]]]&]], {n, 5}, {k, Divisors[n]}]
CROSSREFS
Sequence in context: A334085 A249831 A304527 * A154744 A285038 A243145
KEYWORD
nonn,tabf
AUTHOR
Gus Wiseman, Nov 18 2018
EXTENSIONS
a(15)-a(48) from Chai Wah Wu, Jan 15 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)