A068305
1/16 the number of colorings of an n X n octagonal array with 16 colors.
Original entry on oeis.org
1, 2730, 1097599230, 65013773510046270, 567344965666217922692546310, 729405912578031916581095228654013174510, 138156586653036397048665899068285784224754055444205830, 3855264256604335001270711977271948484283006596889356139648293174199350
Offset: 1
A182406
Square array A(n,k), n>=1, k>=1, read by antidiagonals: A(n,k) is the number of n-colorings of the square grid graph G_(k,k).
Original entry on oeis.org
1, 0, 2, 0, 2, 3, 0, 2, 18, 4, 0, 2, 246, 84, 5, 0, 2, 7812, 9612, 260, 6, 0, 2, 580986, 6000732, 142820, 630, 7, 0, 2, 101596896, 20442892764, 828850160, 1166910, 1302, 8, 0, 2, 41869995708, 380053267505964, 50820390410180, 38128724910, 6464682, 2408, 9
Offset: 1
Square array A(n,k) begins:
1, 0, 0, 0, 0, ...
2, 2, 2, 2, 2, ...
3, 18, 246, 7812, 580986, ...
4, 84, 9612, 6000732, 20442892764, ...
5, 260, 142820, 828850160, 50820390410180, ...
6, 630, 1166910, 38128724910, 21977869327169310, ...
Rows n=1-20 give:
A000007,
A007395,
A068253*3,
A068254*4,
A068255*5,
A068256*6,
A068257*7,
A068258*8,
A068259*9,
A068260*10,
A068261*11,
A068262*12,
A068263*13,
A068264*14,
A068265*15,
A068266*16,
A068267*17,
A068268*18,
A068269*19,
A068270*20.
A068248
1/6 the number of colorings of a 5 X 5 staggered hexagonal array with n colors.
Original entry on oeis.org
1, 673072, 24674450670, 47695073906240, 16222886703881375, 1842996310592836896, 98798502888215704812, 3068393794369671728640, 62960689505171989129005, 933100312771109288146000, 10639781342848431789710266, 97779035987698387480546752, 750090455960001686602653035
Offset: 3
-
a:= n-> (3006792824+ (-26845691044+ (115537440058+ (-319333174471+ (636781496832+ (-975359012827+ (1192518013138+ (-1193724499144+ (995462037353+ (-699932345254+ (418375639535+ (-213720396671+ (93568819963+ (-35133625647+ (11298632584+
(-3101089710+ (722137763+ (-141421592+ (23000726+ (-3051871+ (321994+ (-25992+ (1508+(-56+n)*n) *n)*n) *n)*n) *n)*n) *n)*n) *n)*n) *n)*n) *n) *n) *n) *n) *n) *n) *n) *n) *n) *n) *n/6:
seq (a(n), n=3..40); # Alois P. Heinz, May 03 2012
A068293
a(1) = 1; thereafter a(n) = 6*(2^(n-1) - 1).
Original entry on oeis.org
1, 6, 18, 42, 90, 186, 378, 762, 1530, 3066, 6138, 12282, 24570, 49146, 98298, 196602, 393210, 786426, 1572858, 3145722, 6291450, 12582906, 25165818, 50331642, 100663290, 201326586, 402653178, 805306362, 1610612730, 3221225466, 6442450938, 12884901882
Offset: 1
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- Ana Rechtman, Février 2016, 3e défi, Images des Mathématiques, CNRS, 2016.
- N. J. A. Sloane, The uniform planar nets and their A-numbers [Annotated scanned figure from Gruenbaum and Shephard (1977)]
- Index entries for linear recurrences with constant coefficients, signature (3,-2).
-
[1] cat [6*(2^(n-1)-1): n in [2..40]]; // Vincenzo Librandi, Feb 20 2016
-
a=0; lst={1}; k=6; Do[a+=k; AppendTo[lst, a]; k+=k, {n, 0, 5!}]; lst (* Vladimir Joseph Stephan Orlovsky, Dec 16 2008 *)
Transpose[NestList[{First[#]+1,6(2^First[#]-1)}&,{1,1},30]][[2]] (* or *) Join[{1},LinearRecurrence[{3,-2},{6,18},30]] (* Harvey P. Dale, Nov 27 2011 *)
-
a(n)=polcoeff(prod(i=1,2,(1+i*x))/(prod(i=1,2,(1-i*x))+x*O(x^n)),n)
for(n=0,50,print1(a(n),","))
Old definition (which is now a comment) replaced with explicit formula by
N. J. A. Sloane, May 12 2010
A068253
1/3 of the number of colorings of an n X n square array with 3 colors.
Original entry on oeis.org
1, 6, 82, 2604, 193662, 33865632, 13956665236, 13574876544396, 31191658416342674, 169426507164530254380, 2176592549084872196370724, 66158464020552857153017287240, 4759146677426447759184119036493676, 810410082813497381147177065840601910384
Offset: 1
See
A047938 for number of improper colorings.
-
M[1] = {{1}}; M[m_] := M[m] = {{M[m - 1], Transpose[M[m - 1]]}, {Array[0 &, {2^(m - 2), 2^(m - 2)}], M[m - 1]}} // ArrayFlatten; W[m_] := M[m] + Transpose[M[m]]; T[m_, 1] := 2^(m - 1); T[1, n_] := 2^(n - 1); T[m_, n_] := MatrixPower[W[m], n - 1] // Flatten // Total; a[n_] := T[n, n]; Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 1, 12}] (* Jean-François Alcover, Nov 01 2017, after code from A078099 *)
A068271
1/4 the number of colorings of an n X n rhombic hexagonal array with 4 colors.
Original entry on oeis.org
1, 12, 264, 11424, 1008576, 184910592, 71033971200, 57469424744448, 98237339264864256, 355574469749489123328, 2729407814499050197254144, 44482040254775494064841818112, 1540473331004371306422199656382464, 113440401780206156918876627438624833536
Offset: 1
A068244
1/6 the number of colorings of a 3 X 3 rhombic- or staggered- hexagonal array with n colors.
Original entry on oeis.org
1, 176, 5490, 65600, 455875, 2239776, 8647716, 27962880, 78920325, 200002000, 464447126, 1003294656, 2039332295, 3935444800, 7261533000, 12884914176, 22089914121, 36733221360, 59442494650, 93866696000, 144987663051, 219503536736, 326295822700, 476993088000
Offset: 3
A068245
1/6 the number of colorings of a 4 X 4 rhombic- or staggered- hexagonal array with n colors.
Original entry on oeis.org
1, 7616, 5141250, 552093440, 20631905875, 395001645696, 4771909547076, 41190314035200, 275192443300005, 1502690499112000, 6971521964029766, 28275884687022336, 102456840191225975, 337289521082456320, 1022310183284613000, 2883605488481550336, 7636012822945480521
Offset: 3
-
[(n^11 -26*n^10 +310*n^9 -2240*n^8 +10915*n^7 -37726*n^6 +94576*n^5 -172395*n^4 +224588*n^3 -199854*n^2 +109788*n -28340)*n *(n-1)*(n-2)^3/6: n in [3..19]]; // Bruno Berselli, May 03 2012
-
a:= n-> (-226720+ (1445104+ (-4304712+ (7968348+ (-10265148+ (9755858+ (-7068408+ (3975561+ (-1749715+ (602408+ (-160859+ (32703+ (-4898+ (510+ (-33+n)*n) *n) *n) *n) *n) *n) *n) *n) *n) *n) *n) *n) *n) *n) *n/6:
seq(a(n), n=3..40); # Alois P. Heinz, May 02 2012
A068254
1/4 the number of colorings of an n X n square array with 4 colors.
Original entry on oeis.org
1, 21, 2403, 1500183, 5110723191, 95013316876491, 9639473169171326643, 5336900216006709884938623, 16124704040675904181778734982451, 265865038636937159336134567410478299051
Offset: 1
A068255
1/5 the number of colorings of an n X n square array with 5 colors.
Original entry on oeis.org
1, 52, 28564, 165770032, 10164078082036, 6584229526795818280, 45062665956031451017237456, 3258395057698765483724093981321824, 2489232886416012985921659124731697904597044, 20091032492258710696689787524926465967570325433558752
Offset: 1
Showing 1-10 of 67 results.
Comments