[go: up one dir, main page]

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!)
Search: a270700 -id:a270700
Displaying 1-2 of 2 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A019557 Coordination sequence for G_2 lattice. +10
25
1, 12, 30, 48, 66, 84, 102, 120, 138, 156, 174, 192, 210, 228, 246, 264, 282, 300, 318, 336, 354, 372, 390, 408, 426, 444, 462, 480, 498, 516, 534, 552, 570, 588, 606, 624, 642, 660, 678, 696, 714, 732, 750, 768, 786, 804, 822, 840, 858, 876, 894, 912, 930, 948, 966, 984, 1002, 1020, 1038, 1056 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Also, coordination sequence of Dual(3.12.12) tiling with respect to a 12-valent node. - N. J. A. Sloane, Jan 22 2018
For n > 1, also the number of minimum vertex colorings of the n-Andrásfai graph. - Eric W. Weisstein, Mar 03 2024
LINKS
M. Baake and U. Grimm, Coordination sequences for root lattices and related graphs, arXiv:cond-mat/9706122, Zeit. f. Kristallographie, 212 (1997), 253-256
R. Bacher, P. de la Harpe and B. Venkov, Séries de croissance et séries d'Ehrhart associées aux réseaux de racines, C. R. Acad. Sci. Paris, 325 (Séries 1) (1997), 1137-1142.
R. Bacher, P. de la Harpe and B. Venkov, Séries de croissance et séries d'Ehrhart associées aux réseaux de racines, Annales de l'institut Fourier, 49 no. 3 (1999), p. 727-762.
N. J. A. Sloane, Illustration of layers 0,1,2 in the graph of the Dual(3.12.12) tiling. Centered at a 12-valent node. Note that some of the blue edges are not part of the underlying graph.
N. J. A. Sloane, Overview of coordination sequences of Laves tilings [Fig. 2.7.1 of Grünbaum-Shephard 1987 with A-numbers added and in some cases the name in the RCSR database]
Eric Weisstein's World of Mathematics, Andrásfai Graph.
Eric Weisstein's World of Mathematics, Minimum Vertex Coloring.
FORMULA
a(n) = 18*n-6, n >= 1.
G.f.: (1 + 10*x + 7*x^2)/(1-x)^2.
EXAMPLE
From Peter M. Chema, Mar 20 2016:
Illustration of initial terms:
o
o o
o o o
o o o o o o o o o o o o
o o o o o o o o o o o o
o o o o o o o o o o o o
o o o o o o o
o o o o o o o o o o o o
o o o o o o o o o o o o
o o o o o o o o o o o o
o o o
o o
o
1 12 30 48
Compare to A003154, A045946, and A270700. (End)
MATHEMATICA
CoefficientList[Series[(1 + 10 x + 7 x^2)/(1 - x)^2, {x, 0, 59}], x] (* Michael De Vlieger, Mar 21 2016 *)
PROG
(PARI) x='x+O('x^100); Vec((1+10*x+7*x^2)/(1-x)^2) \\ Altug Alkan, Mar 20 2016
CROSSREFS
For partial sums see A082040.
List of coordination sequences for Laves tilings (or duals of uniform planar nets): [3,3,3,3,3.3] = A008486; [3.3.3.3.6] = A298014, A298015, A298016; [3.3.3.4.4] = A298022, A298024; [3.3.4.3.4] = A008574, A296368; [3.6.3.6] = A298026, A298028; [3.4.6.4] = A298029, A298031, A298033; [3.12.12] = A019557, A298035; [4.4.4.4] = A008574; [4.6.12] = A298036, A298038, A298040; [4.8.8] = A022144, A234275; [6.6.6] = A008458.
KEYWORD
nonn,easy
AUTHOR
Michael Baake (mbaake(AT)sunelc3.tphys.physik.uni-tuebingen.de)
STATUS
approved
A271114 Expansion of (1+x)*(2+x)/(1-x)^2. +10
2
2, 7, 13, 19, 25, 31, 37, 43, 49, 55, 61, 67, 73, 79, 85, 91, 97, 103, 109, 115, 121, 127, 133, 139, 145, 151, 157, 163, 169, 175, 181, 187, 193, 199, 205, 211, 217, 223, 229, 235, 241, 247, 253, 259, 265, 271, 277, 283, 289, 295, 301, 307, 313, 319, 325 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
G.f.: (1+x)*(2+x)/(1-x)^2.
a(n) = A270700(n)/6.
a(n) = 6*n+1 = A016921(n) for n>0.
a(n) = 2*a(n-1)-a(n-2) for n>2.
E.g.f.: 1 + (1+6*x)*exp(x). - G. C. Greubel, Mar 31 2016
From Bruno Berselli and G. C. Greubel, Mar 31 2016: (Start)
a(5*m+1) = 30*m + 7 = A132231(m+1).
a(5*m+2) = 30*m + 13 = A082369(m+1).
a(5*m+3) = 30*m + 19 = A156376(m).
a(5*m+4) = 30*m + 25 = 5*A016969(m).
a(5*m+5) = 30*m + 31 = A128470(m+1). (End)
a(n) = A100764(n+3) for n >= 1. - Georg Fischer, Oct 30 2018
MATHEMATICA
Join[{2}, LinearRecurrence[{2, -1}, {7, 13}, 100]] (* G. C. Greubel, Mar 31 2016 *)
PROG
(PARI) Vec((1+x)*(2+x)/(1-x)^2 + O(x^70))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Mar 31 2016
STATUS
approved
page 1

Search completed in 0.007 seconds

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 August 30 02:56 EDT 2024. Contains 375521 sequences. (Running on oeis4.)