A282613
Number of inequivalent 3 X 3 matrices with entries in {1,2,3,..,n} up to rotations.
Original entry on oeis.org
0, 1, 140, 4995, 65824, 489125, 2521476, 10092775, 33562880, 96870249, 250025500, 589527851, 1290008160, 2651218765, 5165397524, 9611031375, 17180133376, 29647326545, 49590297900, 80672546899, 128000804000, 198571037301, 301818598180, 450289780535
Offset: 0
The number of 3 X 3 binary matrices up to rotations is 140.
- Colin Barker, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (10,-45,120,-210,252,-210,120,-45,10,-1).
-
Table[(2n^3+n^5+n^9)/4, {n, 0, 24}]
-
concat(0, Vec(x*(1 + 130*x + 3640*x^2 + 22054*x^3 + 39070*x^4 + 22054*x^5 + 3640*x^6 + 130*x^7 + x^8) / (1 - x)^10 + O(x^30))) \\ Colin Barker, Feb 23 2017
A282614
Number of inequivalent 3 X 3 matrices with entries in {1,2,3,..,n} up to vertical and horizontal reflections.
Original entry on oeis.org
0, 1, 168, 5346, 67840, 496875, 2544696, 10151428, 33693696, 97135605, 250525000, 590412966, 1291500288, 2653631071, 5169160920, 9616725000, 17188519936, 29659392873, 49607301096, 80696066410, 128032800000, 198613915731, 301875282808, 450363792396
Offset: 0
The number of 3 X 3 binary matrices up to vertical and horizontal reflections is 168.
- Colin Barker, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (10,-45,120,-210,252,-210,120,-45,10,-1).
-
Table[(2n+1+n^4)n^5/4, {n, 0, 24}]
LinearRecurrence[{10,-45,120,-210,252,-210,120,-45,10,-1},{0,1,168,5346,67840,496875,2544696,10151428,33693696,97135605},30] (* Harvey P. Dale, Oct 01 2024 *)
-
concat(0, Vec(x*(1 + 158*x + 3711*x^2 + 21820*x^3 + 39095*x^4 + 22254*x^5 + 3577*x^6 + 104*x^7) / (1 - x)^10 + O(x^30))) \\ Colin Barker, Feb 23 2017
A282612
Number of inequivalent 3 X 3 matrices with entries in {1,2,3,..,n} up to row permutations.
Original entry on oeis.org
0, 1, 120, 3654, 45760, 333375, 1703016, 6784540, 22500864, 64836045, 167167000, 393877506, 861456960, 1769830699, 3447273480, 6412923000, 11461636096, 19776716505, 33076889784, 53804808190, 85365336000, 132422893911, 201268229800, 300266132244, 440396812800
Offset: 0
The number of 3 X 3 binary matrices up to row permutations is 120.
- Colin Barker, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (10,-45,120,-210,252,-210,120,-45,10,-1).
-
Table[(3n^6+2n^3+n^9)/6, {n, 0, 24}]
-
concat(0, Vec(x*(1 + 110*x + 2499*x^2 + 14500*x^3 + 26015*x^4 + 14934*x^5 + 2365*x^6 + 56*x^7) / (1 - x)^10 + O(x^30))) \\ Colin Barker, Feb 23 2017
A283029
Number of inequivalent 5 X 5 matrices with entries in {1,2,3,..,n} when a matrix and its transpose are considered equivalent.
Original entry on oeis.org
0, 1, 16793600, 423651479175, 562950490292224, 149011627197265625, 14215144250057342976, 670534312205763205375, 18889465949070766899200, 358948993948871860432449, 5000000000500000000000000, 54173529719030485105622951, 476981083228048575587942400
Offset: 0
For n=2 we get a(2)=16793600 inequivalent 5x5 binary matrices up to the action of transposition.
-
Table[n^15 (n^2 + 1) (n^8 - n^6 + n^4 - n^2 + 1)/2, {n, 0, 12}]
-
a(n) = n^15*(n^2+1)*(n^8-n^6+n^4-n^2+1)/2; \\ Indranil Ghosh, Feb 27 2017
-
def A283029(n): return n**15*(n**2+1)*(n**8-n**6+n**4-n**2+1)/2 # Indranil Ghosh, Feb 27 2017
Showing 1-4 of 4 results.
Comments